/**
 * Plugin Name: deployteq form
 * Description: a plugin to generate euroforum specific forms and make use of the deployteq webhook interface.
 * herziene versie met 2 dynamische velden
 * Version: 1.3
 * Author: Floris Leguit
 */

.shortcode-input {
    width: 300px;
}

.shortcode-copy-button {
    margin-left: 10px;
}

.inside {max-width: 600px;}
.inside label {
	font-weight: bold;
	padding-bottom: 10px;
}
.inside select,
.inside input {
	padding: 0px 8px;
	min-height: 34px;
	font-size: 1em;
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px inset;
	border: 1px solid rgb(221, 221, 221);
	border-radius: 5px;
	width: 100%;
	margin-bottom: 20px;
}

.mb-10 {
	margin-bottom: 10px;
}

.button {
	background-color: inherit;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
    font-size: 16px;
	transition: background-color 0.2s;
}


.btn-primary {
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-primary:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
}
/* Voeg een spinner toe voor de loading state */
.btn-primary.loading {
    position: relative;
    padding-left: 2.5rem;
}
.btn-primary.loading:before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}