.elementor-16136 .elementor-element.elementor-element-ac02039{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for shortcode, class: .elementor-element-5444229 *//* ===============================
   Appointment Form Main Wrapper
================================ */
.appointment-form-wrapper {
    background-color: #003d69;
    padding: 40px 30px;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* ===============================
   Form Header
================================ */
.form-header h2 {
    color: #ffffff;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: 600;
}

/* ===============================
   Form Fields Grid
================================ */
.appointment-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

/* ===============================
   Field Item
================================ */
.field-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

/* ===============================
   Input & Select Style
================================ */
.appointment-fields input,
.appointment-fields select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* ===============================
   Choose Doctor (Center)
================================ */
.field-item.choose-doctor {
    grid-column: 1 / -1;        /* পুরো row */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.field-item.choose-doctor select {
    width: 50%;
}

/* ===============================
   Submit Button Area
================================ */
.appointment-submit {
    margin-top: 35px;
    text-align: center;
}

/* ===============================
   Make Appointment Button
================================ */
.appointment-submit input[type="submit"] {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 60px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===============================
   Button Hover Effect
================================ */
.appointment-submit input[type="submit"]:hover {
    background-color: #ffffff;
    color: #003d69;
    transform: translateY(-2px);
}

/* ===============================
   Responsive - Tablet
================================ */
@media (max-width: 992px) {
    .appointment-fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .field-item.choose-doctor select {
        width: 70%;
    }
}

/* ===============================
   Responsive - Mobile
================================ */
@media (max-width: 600px) {
    .appointment-fields {
        grid-template-columns: 1fr;
    }

    .field-item.choose-doctor select {
        width: 100%;
    }

    .appointment-form-wrapper {
        padding: 20px;
    }
}/* End custom CSS */