/* Styles for the NurseBrain leaderboard banner wrapper */
.nursebrain-banner-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px auto;
    padding: 0 15px; /* Add some padding on very small screens */
    box-sizing: border-box;
}

/* Styles for the NurseBrain leaderboard banner container */
.nursebrain-promo-leaderboard {
    width: 100%;
    max-width: 728px; /* Maximum width of the banner */
    aspect-ratio: 728 / 90; /* Maintain aspect ratio of the banner */
    overflow: hidden;
}

/* Styles for the banner image */
.nursebrain-promo-leaderboard img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area without distortion */
    display: block;
}

/* Smooth transition for resizing */
.nursebrain-promo-leaderboard,
.nursebrain-promo-leaderboard img {
    transition: all 0.3s ease-in-out;
}