/* ✅ External CSS file: /mu-plugins/quicklinks-general.css */
.quick-links-wrapper {
    background-color: #040273;
    padding: 12px 0;
    margin-bottom: 20px;
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 999;
}
.quick-links-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 12px;
    overflow-x: auto;
}
.quick-links-scroll a {
    flex: 0 0 auto;
    min-width: 120px;
    background: #0a4fbd;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
.quick-links-scroll a.active {
    background: #f4b400;
    color: #000;
}
@media (min-width: 768px) {
    .quick-links-scroll {
        justify-content: center;
        flex-wrap: wrap;
    }
}
