/* Doesburg Reserveringssysteem Styling */
.doesburg-form-container {
    max-width: 800px;
}

.doesburg-form-container > p {
    margin-bottom: 1rem;
    font-size: 14px;
}

.doesburg-form-container h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #006ab2;
    margin-bottom: .25rem;
}

.doesburg-form-step {
    display: none;
    background: #f6f5f4;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.doesburg-form-step .datepicker {
    width: 100%;
}



.doesburg-form-step h3 {
    font-size: 1.25rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.doesburg-form-step.active {
    display: block;
}

.doesburg-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.doesburg-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doesburg-step-dot.active {
    background: #17a086;
    color: white;
}

.doesburg-step-dot.completed {
    background: rgb(0, 106, 178);
    color: white;
}

.doesburg-step-line {
    flex-grow: 1;
    height: 2px;
    background: #ddd;
    margin: 15px 10px 0;
}

.doesburg-form-row {
    margin-bottom: 20px;
}

.doesburg-form-row.checkbox {
    margin-bottom: 8px;
}

.doesburg-form-row.checkbox label {
    font-weight: normal;
}

.doesburg-form-row label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 700;
    font-size: 14px;
}

.doesburg-form-row input[type="text"],
.doesburg-form-row input[type="email"],
.doesburg-form-row input[type="tel"],
.doesburg-form-row input[type="date"],
.doesburg-form-row input[type="time"],
.doesburg-form-row select,
.doesburg-form-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 38px;
}

.doesburg-form-row.checkbox label {
    display: inline;
    margin-left: 5px;
}

.doesburg-form-row.checkbox input {
    width: auto;

}

.doesburg-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.doesburg-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}



.doesburg-btn-prev {
    background: #f1f1f1;
    color: #333;
}

.doesburg-btn-submit,
.doesburg-btn-next {
    color: rgb(24, 24, 24);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    transition: 0.2s ease-in-out;
    background: rgb(255, 204, 0);
    border-radius: 3px;
    padding: 15px;
}

.doesburg-error {
    color: #D32F2F;
    margin-top: 5px;
    font-size: 0.9em;
}

.doesburg-success {
    background: #E8F5E9;
    color: #388E3C;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.doesburg-success p {
    margin: 0 0 10px;
}

.doesburg-success p:last-child {
    margin-bottom: 0;
}

.doesburg-form-note,
.doesburg-form-hint {
    font-size: 14px;
    color: #555;
    margin: 0 0 15px;
    line-height: 1.5;
}

.doesburg-form-hint {
    font-style: italic;
    margin-top: -10px;
}

.doesburg-form-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.doesburg-optional {
    font-weight: normal;
    color: #666;
    font-size: 13px;
}

.doesburg-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .doesburg-col-2 {
        grid-template-columns: 1fr;
    }
}
