/* Custom premium scrollbar for leadership section */
.royal-ministers-scroll-wrap {
    scrollbar-width: thin;
    scrollbar-color: var(--c-accent, #b8860b) rgba(0,0,0,0.05);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.royal-ministers-scroll-wrap::-webkit-scrollbar {
    height: 6px;
}

.royal-ministers-scroll-wrap::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.royal-ministers-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--c-accent, #b8860b);
    border-radius: 10px;
}

.royal-ministers-scroll-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--c-accent-dark, #8b6508);
}

/* Ensure no double scrollbars */
[style*="max-width: 100vw; overflow: hidden"] {
    overflow: hidden !important;
}

/* Ensure all 10 leaders are inline */
.royal-ministers {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 10px 24px !important;
    min-width: max-content !important;
    width: fit-content !important;
}
