.scl-highlighted-text {
    background: linear-gradient(96deg, #2939B4 -4.72%, #1681CA 96.59%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.ml-size {
    font-size: 90px;
}


@keyframes fadeToBlack {
    0% {
        background: linear-gradient(96deg, #2939B4 -4.72%, #1681CA 96.59%);
    }

    100% {
        background: black;
    }
}

.scl-gd-bg {
    background: linear-gradient(96deg, #2939B4 -4.72%, #1681CA 96.59%);
    transition: all 0.5s ease-in-out;
}

.scl-gd-bg:hover {
    animation: fadeToBlack 0.5s forwards;
}


/* Ensure dropdown positioning doesn't collapse */
.dropdown-menu {
    position: absolute;
}

.dropend .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.1rem;
}

/* Show submenu on hover */
.dropend:hover>.dropdown-menu {
    display: block;
}

/* Optional: rotate caret for submenu */
.dropend>.dropdown-toggle::after {
    transform: rotate(-90deg);
}


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    display: inline-block;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;

    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Remove purple border from global version dropdown items only */
#globalVersionDropdown+.dropdown-menu .dropdown-item {
    border: none !important;
    box-shadow: none !important;
}