.WaGadgetEventsStateCalendar .EventListCalendar td.EventListCalendarHeader {
    padding: 16px 0 16px 20px;
    border: none !important;
    color: white;
    background-color: #85bf42 !important;
    font-size: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
}
.register-button {
  display: inline-block;
  background-color: #0073e6;
  color: #fff !important;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 20px;
}

.register-button:hover {
  background-color: #005bb5;
}
/* =========================================
   ATD CENTRAL IOWA - GET INVOLVED ACCORDION
   ========================================= */

.atd-involvement {
    max-width: 1000px;
    margin: 0 auto;
}


/* Intro */
.atd-involvement-intro {
    text-align: center;
    margin-bottom: 35px;
}

.atd-involvement-intro h2 {
    color: #005b8e !important;
    font-size: 36px !important;
    margin: 0 0 12px 0 !important;
}

.atd-involvement-intro p {
    max-width: 750px;
    margin: 0 auto !important;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================
   MAIN ACCORDION
   ========================================= */

.atd-accordion {
    border: 1px solid #d9dde0;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
}


/* Main accordion heading */
.atd-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border: none;
    background: #ffffff;

    color: #005b8e !important;

    font-size: 19px;
    font-weight: bold;

    text-align: left;
    cursor: pointer;

    transition: background-color 0.2s ease;
}


/* Hover */
.atd-accordion-button:hover {
    background-color: #f3f6f7;
}


/* Open accordion */
.atd-accordion.open .atd-accordion-button {
    background-color: #005b8e;
    color: #ffffff !important;
}


/* Plus / minus */
.atd-accordion-icon {
    color: #85bf42;
    font-size: 26px;
    font-weight: normal;
    line-height: 1;
    margin-left: 20px;
}

.atd-accordion.open .atd-accordion-icon {
    color: #ffffff;
}


/* Hidden accordion content */
.atd-accordion-content {
    max-height: 0;
    overflow: hidden;

    padding: 0 30px;

    background: #ffffff;
    color: #4a545f;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.35s ease;
}


/* Open accordion content */
.atd-accordion.open .atd-accordion-content {
    padding: 25px 30px 30px 30px;
    opacity: 1;
}


/* Paragraphs */
.atd-accordion-content p {
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
}


/* Lists */
.atd-accordion-content ul {
    margin: 10px 0 20px 20px;
    padding-left: 15px;
}

.atd-accordion-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}


/* Links */
.atd-accordion-content a:not(.atd-action-button) {
    color: #005b8e !important;
    font-weight: 600;
}


/* Planning note */
.atd-note {
    margin-top: 20px;
    padding: 15px 18px;

    background: #f3f6f7;

    border-left: 4px solid #85bf42;

    line-height: 1.6;
}


/* Green CTA buttons */
.atd-action-button {
    display: inline-block;

    margin-top: 8px;
    padding: 11px 22px;

    background-color: #85bf42 !important;
    color: #ffffff !important;

    border-radius: 5px;

    text-decoration: none !important;
    font-weight: bold;

    transition: background-color 0.2s ease;
}

.atd-action-button:hover {
    background-color: #6fa832 !important;
    color: #ffffff !important;
}


/* =========================================
   JOIN A COMMITTEE
   ========================================= */

/* Extra spacing between intro button and benefit */
.committee-intro {
    margin-bottom: 40px;
}


/* Volunteer benefit callout */
.committee-benefit {
    margin: 25px 0 30px;
    padding: 18px 20px;

    background-color: #f3f6f7;

    border-left: 5px solid #85bf42;
    border-radius: 4px;

    color: #4a545f;
}

.committee-benefit > strong {
    display: block;

    color: #005b8e;

    font-size: 18px;

    margin-bottom: 6px;
}

.committee-benefit p {
    margin-bottom: 6px !important;
}

.committee-benefit-note {
    font-size: 14px;
}


/* Committee list */
.get-involved-accordion .committee-list {
    border-top: none !important;
}


/* Individual committee card */
.get-involved-accordion .committee-item {
    background-color: rgba(0, 91, 142, 0.06);

    border: 1px solid rgba(0, 91, 142, 0.15) !important;
    border-radius: 8px;

    margin-bottom: 12px;

    overflow: hidden;
}


/* Committee clickable heading */
.get-involved-accordion .committee-toggle {
    width: 100%;

    padding: 20px 24px !important;

    background-color: transparent !important;
    border: none !important;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    text-align: left;
    cursor: pointer;

    transition: background-color 0.2s ease;
}


/* Committee name */
.get-involved-accordion .committee-summary strong {
    display: block;

    color: #005b8e !important;

    font-size: 20px !important;
    line-height: 1.3;
    font-weight: 700;
}


/* Committee plus / minus */
.get-involved-accordion .committee-icon {
    flex-shrink: 0;

    color: #85bf42 !important;

    font-size: 28px !important;
    font-weight: 400;
    line-height: 1;
}


/* Committee hover */
.get-involved-accordion .committee-toggle:hover {
    background-color: rgba(0, 91, 142, 0.09) !important;
}


/* Open committee card */
.get-involved-accordion .committee-item.open {
    background-color: #ffffff;

    border-color: rgba(0, 91, 142, 0.25) !important;
}


/* Committee details - hidden by default */
.get-involved-accordion .committee-details {
    display: none !important;

    padding: 0 24px 24px 24px !important;
    margin: 0 !important;
}


/* Committee details - visible */
.get-involved-accordion .committee-item.open .committee-details {
    display: block !important;
}


/* Short description inside opened committee */
.get-involved-accordion .committee-tagline {
    color: #005b8e !important;

    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.5;

    margin-bottom: 18px !important;
}


/* Great Fit callout */
.get-involved-accordion .committee-fit {
    padding: 12px 15px;

    background-color: #f3f6f7;

    border-radius: 4px;
}

.get-involved-accordion .committee-fit strong {
    color: #005b8e;
}
/* =========================================
   SOCIAL MEDIA BUTTONS
   ========================================= */

.atd-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.atd-social-buttons .atd-action-button {
    margin-top: 0;
}

@media screen and (max-width: 500px) {

    .atd-social-buttons {
        flex-direction: column;
    }

    .atd-social-buttons .atd-action-button {
        text-align: center;
    }

}

/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 700px) {

    .atd-involvement {
        width: 100%;
    }

    .atd-involvement-intro {
        margin-bottom: 25px;
    }

    .atd-involvement-intro h2 {
        font-size: 30px !important;
    }

    .atd-involvement-intro p {
        font-size: 16px;
    }

    .atd-accordion-button {
        padding: 16px 18px;
        font-size: 17px;
    }

    /* Closed mobile accordion */
    .atd-accordion-content {
        padding: 0 20px;
    }

    /* Open mobile accordion */
    .atd-accordion.open .atd-accordion-content {
        padding: 20px 20px 25px 20px;
    }

    .get-involved-accordion .committee-toggle {
        padding: 18px 18px !important;
        gap: 12px;
    }

    .get-involved-accordion .committee-summary strong {
        font-size: 18px !important;
    }

    .get-involved-accordion .committee-details {
        padding: 0 18px 20px 18px !important;
    }

    .committee-benefit {
        padding: 15px 16px;
    }

}
/* =========================================
   ATD CENTRAL IOWA - BOARD ACCORDION
   ========================================= */

.featured-member {
    background: #ffffff !important;
    border: 1px solid rgba(0, 91, 142, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    overflow: hidden !important;

    margin-bottom: 14px !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}


/* Hide Wild Apricot's original role/title location.
   JavaScript will move the role beside the member name. */
.featured-member .gadgetStyleTitle {
    display: none !important;
}


/* Remove built-in body spacing */
.featured-member .gadgetStyleBody {
    padding: 0 !important;
}


/* Wild Apricot list */
.featured-member .layoutHorizontal {
    margin: 0 !important;
    padding: 0 !important;
}

.featured-member .layoutHorizontal li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   CLICKABLE BOARD MEMBER HEADER
   ========================================= */

.featured-member .board-member-toggle {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 20px 24px;

    background: transparent;
    border: none;

    text-align: left;
    cursor: pointer;

    transition: background-color 0.2s ease;
}


.featured-member .board-member-toggle:hover {
    background: rgba(0, 91, 142, 0.05);
}


/* Open state */
.featured-member.bio-open .board-member-toggle {
    background: rgba(0, 91, 142, 0.06);
}


/* =========================================
   PHOTO
   ========================================= */

.featured-member .board-member-photo {
    flex: 0 0 80px;

    width: 80px;
    height: 80px;

    margin-right: 22px;
}


.featured-member .board-member-photo img {
    display: block !important;

    width: 80px !important;
    height: 80px !important;

    border-radius: 50% !important;
    object-fit: cover !important;

    margin: 0 !important;
}


/* =========================================
   NAME + ROLE
   ========================================= */

.featured-member .board-member-info {
    flex: 1;

    min-width: 0;
}


.featured-member .board-member-name {
    display: block;

    color: #005b8e !important;

    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.25;

    margin-bottom: 5px;
}


.featured-member .board-member-role {
    display: block;

    color: #4a545f !important;

    font-size: 15px !important;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================
   PLUS / MINUS
   ========================================= */

.featured-member .board-member-icon {
    flex: 0 0 auto;

    margin-left: 20px;

    color: #85bf42 !important;

    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}


/* =========================================
   BIO
   ========================================= */

.featured-member .description {
    display: none !important;

    margin: 0 !important;
    padding: 22px 24px 26px 126px !important;

    border-top: 1px solid rgba(0, 91, 142, 0.10);

    background: #ffffff;

    color: #4a545f !important;

    font-size: 15px !important;
    line-height: 1.65 !important;

    text-align: left !important;
}


.featured-member.bio-open .description {
    display: block !important;
}


/* =========================================
   HIDE ORIGINAL FEATURED MEMBER ELEMENTS
   AFTER JAVASCRIPT REBUILDS HEADER
   ========================================= */

.featured-member.board-enhanced .img,
.featured-member.board-enhanced .rightPart > h4 {
    display: none !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 600px) {

    .featured-member .board-member-toggle {
        padding: 17px 18px;
    }

    .featured-member .board-member-photo {
        flex-basis: 64px;

        width: 64px;
        height: 64px;

        margin-right: 16px;
    }

    .featured-member .board-member-photo img {
        width: 64px !important;
        height: 64px !important;
    }

    .featured-member .board-member-name {
        font-size: 18px !important;
    }

    .featured-member .board-member-role {
        font-size: 14px !important;
    }

    .featured-member .board-member-icon {
        margin-left: 12px;
        font-size: 25px;
    }

    .featured-member .description {
        padding: 20px 18px 22px 18px !important;
    }

}
/* =========================================
ATD WELCOME POP-OUT
========================================= */

.atd-welcome-popup {
position: fixed;
right: 24px;
bottom: 24px;

width: min(380px, calc(100vw - 32px));

background: #ffffff;
border: 1px solid rgba(0, 91, 142, 0.14);
border-radius: 12px;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);

padding: 26px;

z-index: 9999;

opacity: 0;
transform: translateY(20px);

transition:
opacity 0.3s ease,
transform 0.3s ease;
}


/* Visible state */
.atd-welcome-popup.show {
opacity: 1;
transform: translateY(0);
}


/* Close button */
.atd-welcome-close {
position: absolute;
top: 10px;
right: 14px;

padding: 0;
border: none;
background: transparent;

color: #4a545f;

font-size: 26px;
line-height: 1;

cursor: pointer;
}


/* Small accent label */
.atd-welcome-label {
display: inline-block;
margin-bottom: 10px;

padding: 5px 10px;

background: rgba(133, 191, 66, 0.14);
color: #5f8f28;

border-radius: 4px;

font-size: 13px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}


/* Heading */
.atd-welcome-popup h2 {
margin: 0 25px 10px 0 !important;

color: #005b8e !important;

font-size: 25px !important;
line-height: 1.25;
}


/* Message */
.atd-welcome-popup p {
margin: 0 0 18px 0 !important;

color: #4a545f !important;

font-size: 16px;
line-height: 1.55;
}


/* Button */
.atd-welcome-button {
display: inline-block;

padding: 10px 20px;

background: #85bf42 !important;
color: #ffffff !important;

border-radius: 5px;

text-decoration: none !important;
font-weight: 700;
}

.atd-welcome-button:hover {
background: #6fa832 !important;
color: #ffffff !important;
}


/* Mobile */
@media screen and (max-width: 600px) {

.atd-welcome-popup {
right: 16px;
bottom: 16px;
left: 16px;

width: auto;

padding: 22px;
}

.atd-welcome-popup h2 {
font-size: 22px !important;
}

}