/* Appointment Form Styles */

#appointment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

#appointment-form input[type="text"],
#appointment-form input[type="email"],
#appointment-form select {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: none;
}

#appointment-form input[type="text"]::placeholder,
#appointment-form input[type="email"]::placeholder {
    color: #888;
    font-style: italic;
}

#appointment-form select {
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

#appointment-form select option {
    color: #333;
}

#appointment-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

#appointment-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Success and Error Messages */
#appointment-form .error p,
#appointment-form .success p {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

#appointment-form .error p {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#appointment-form .success p {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive Design */
@media (max-width: 600px) {
    #appointment-form {
        padding: 15px;
    }

    #appointment-form input[type="submit"] {
        width: 100%;
    }
}
