/* Dalston Appointments – Frontend Form */

/* Dalston Appointments – Improved Layout */

.dalston-appointment-form {
    
    margin-top: 40px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

.dalston-form-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.dalston-appointment-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.dalston-appointment-form input,
.dalston-appointment-form select,
.dalston-appointment-form textarea {
    width: 100%;
    padding: 11px 12px !important;
    margin-bottom: 16px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dalston-appointment-form textarea {
    min-height: 90px;
}

.dalston-form-row {
    display: flex;
    gap: 12px;
}

.dalston-form-row > div {
    flex: 1;
}

.dalston-appointment-form button {
    width: auto;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #2739a7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dalston-appointment-form button:hover {
    background: #1f2f8c;
}

/* Success message */

.dalston-appt-success {
    max-width: 520px;
    margin: 40px auto;
    padding: 28px;
    background: #f6f9ff;
    border-left: 5px solid #2739a7;
    border-radius: 6px;
}

.dalston-appt-success h3 {
    margin-top: 0;
    color: #2739a7;
}

.dalston-appt-success ul {
    padding-left: 18px;
}

/* Mobile */
@media (max-width: 600px) {
    .dalston-form-row {
        flex-direction: column;
    }
}