#service-booking-form {
    max-width: 600px;
    margin: 20px 0;
}

#service-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#service-booking-form input,
#service-booking-form select,
#service-booking-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    background: #0073aa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #005a87;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
    animation: slideDown 0.5s ease-out;
}

.success h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.success p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.success p:last-child {
    margin-bottom: 0;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    border: 1px solid #f5c6cb;
}

#login-register-tabs {
    margin-bottom: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure datepicker is visible */
.ui-datepicker {
    z-index: 999999 !important;
}

/* Style the date input fields */
#service-date, #recurring-start-date {
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>') no-repeat right 10px center;
    background-size: 20px 20px;
    cursor: pointer;
}