#camsil-booking-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#camsil-booking-form h3 {
    margin-top: 0;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

#camsil-booking-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95em;
}

#camsil-booking-form input,
#camsil-booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

#camsil-booking-form input:focus,
#camsil-booking-form select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

#camsil-booking-form button {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

#camsil-booking-form select[name="service"],
#camsil-booking-form select[name="time"] {
    height: 48px !important;
    background-color: #f0f8ff;
}


#camsil-booking-form button:hover {
    background: #219653;
}

#camsil-response {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#camsil-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#camsil-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}