/* Appointment Form Container */
#appointmentForm {
    max-width: 600px;
    margin: 0 auto;
}

/* Labels in the Form */
#appointmentForm .form-label {
    font-weight: bold;
}

/* Form Input Fields (Text, Email, Phone, Date, Select, Textarea) */
#appointmentForm input,
#appointmentForm select,
#appointmentForm textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Submit Button */
#appointmentForm button[type="submit"] {
    font-weight: bold;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    background-color: #2c2d91; /* Updated button color */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Submit Button Hover Effect */
#appointmentForm button[type="submit"]:hover {
    background-color: #1f2078; /* Darker shade for hover effect */
}

/* Card Styling */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    background-color: #fff; /* Ensure the card body remains white */
}

/* Card Header */
.card-header {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    background-color: #2c2d91; /* Updated header color */
    color: white;
    text-align: center;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Card Body */
.card-body {
    padding: 20px;
}

/* Optional Responsive Styling */
@media (max-width: 767px) {
    #appointmentForm {
        padding: 10px;
    }

    #appointmentForm button[type="submit"] {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}
