#PAGEID_PAGEID_932810 .zoneContentOuter .zoneContentInner {padding:0;}

genericListTable tbody tr td .memberValue, .membersTable tbody tr td .memberValue{
    padding: 5px;
}

/* Custom CSS for Sponsor Carousel */
/* 1. Center the logos vertically and horizontally */
.jcarousel ul li {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100px; /* Adjust this to your preferred carousel height */
    position: relative;
    padding: 0 15px; /* Adjusts horizontal spacing between logos */
}

/* 2. Create the consistent vertical separator line */
.jcarousel ul li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;    /* Line starts 25% from the top */
    bottom: 25%; /* Line ends 25% from the bottom */
    width: 1px;
    background-color: #dddddd; /* Light grey color for the line */
}

/* 3. Remove the line from the very last logo */
.jcarousel ul li:last-child::after {
    display: none;
}

/* 4. Ensure images don't get squished or sit weirdly */
.jcarousel ul li img {
    max-height: 80%;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    display: block;
}

/* 5. Hide those pesky manual <br> tags if they are still in the HTML */
.jcarousel ul li br {
    display: none !important;
}