.gdl-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px
}

.gdl-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.gdl-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 160px;
    text-transform: capitalize;
}

.gdl-search {
    display: flex;
    gap: 10px;
    align-items: center
}

#gdl-search {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1
}

.gdl-btn-light {
    padding: 8px 12px;
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer
}

#gdl-list {
    display: flex;
    flex-direction: column;
}

.gdl-card {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

#gdl-list .gdl-card p {
    margin-top: 0;
    margin-bottom: 0;
}

#gdl-list .gdl-card .content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gdl-avatar {
    width: 140px;
    height: 160px;
    object-fit: cover;
    background: #f5f5f5;
    border-radius: 4px
}

.gdl-name {
    margin: 0 0 6px;
    font-size: 20px
}

.gdl-sub {
    color: #666;
    margin-bottom: 10px
}

.gdl-appointment {
    padding: 10px 16px;
    background: #3B8F67;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.gdl-appointment:hover {
    color: #fff;
}

.gdl-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    align-items: center;
    justify-content: center
}

.gdl-modal[aria-hidden="false"] {
    display: flex
}

.gdl-modal-inner {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 900px;
    width: 95%;
    position: relative
}

.gdl-modal-close {
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px
}

div#gdl-pagination {
    display: flex;
    margin-top: 30px;
    gap: 10px;
    justify-content: center;
}

div#gdl-pagination button {
    padding: 10px;
}

button.gdl-page {
    box-shadow: none;
    outline: none;
    border: 1px solid #4b9b6e;
    background-color: #fff;
}

/* ===========================
   SLIDER STYLES
   =========================== */

.gdl-slider-header h2 {
    color: #043927;
    /* Dark Green text? Image looks dark green. */
    margin: 0;
    font-family: "Georgia", serif;
    /* Serif font */
}

.gdl-slider-nav {
    display: flex;
    gap: 10px;
}

.gdl-slide-footer h3.gdl-slide-name {
    color: var(--e-global-color-e639b1e);
}

.gdl-slide-footer .gdl-slide-specialty {
    color: var(--e-global-color-e639b1e);
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper.gdl-elementor-swiper:not(.swiper-initialized)  .swiper-wrapper {
    gap: 20px;
}
.swiper.gdl-elementor-swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    flex: 0 0 calc(25% - 15px);
}

/* Card */
.gdl-slide-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* shadow? */
}

.gdl-slide-card img.gdl-slide-avatar {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    /* Focus on face */
    background: #f0f2f5;
    display: block;
    aspect-ratio: 1/1;
}

.gdl-slide-footer {
    background-color: #032b1d;
    /* Deep Green */
    padding: 20px 27px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gdl-slide-name {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 400;
}

.gdl-slide-specialty {
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.gdl-slide-btn {
    background-color: var( --e-global-color-c61a87f );
    color: var(--e-global-color-5d1db06);
    padding: 8px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    font-family: "Georgia", serif;
    /* Italic in button? Maybe just serif */
    font-style: italic;
    display: inline-block;
    transition: 0.3s;
}

.gdl-slide-btn:hover {
    background-color: #fff;
    color: #032b1d;
}