@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/****************************************/
/*  GENERIC 
/****************************************/
*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

img {
    vertical-align: top;
}

ul {
    list-style-type: none
}

a,
li {
    text-decoration: none;
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
}

a:hover {
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none !important;
    /* IE and Edge */
    scrollbar-width: none !important;
    /* Firefox */
}

/* Hide arrows on number inputs Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows on number inputs Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

:root {
    --col1: #226;
    --col2: #c8c;
    --col3: #14a;
    --col4: #535cb6;
    --col5: #fff6;
    --col6: #ddd6;
    --col7: #000;
    --pgbg: radial-gradient(var(--col1), var(--col2), var(--col3));
    --pgbg: url('../public/gfx/bg.jpg');
    --cardbg: #0004;
    --in3d: inset 2px 2px 4px 0px #000,
        inset -1px -1px 1px 0px #fff4;
    --out3d: inset 2px 2px 4px -2px #fff8,
        inset -2px -2px 4px -2px #000;
    --card3d: inset 3px 3px 6px -2px #fff8,
        inset -3px -3px 6px -2px #000,
        0px 5px 10px -2px #000;
    --timeElapsed: 100%;
    --volume: 10%;
}

body {
    position: relative;
    width: 100%;
    min-width: 100vw;
    height: 100%;
    min-height: 100vh;
    font-family: 'Roboto', 'sans-serif';
    color: #fff;

    #page-bg {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: var(--pgbg) center center / cover no-repeat;
        z-index: -1;
    }

}

.inset {
    width: fit-content;
    height: fit-content;
    padding: 4px;
    border-radius: 50px;
    box-shadow: var(--in3d);
    background: #0002;
    display: flex;
    align-items: center;

    &:has(input),
    &:has(select),
    &:has(textarea) {
        border-radius: 10px;
    }
}

button,
.btn {
    position: relative;
    width: 200px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    box-shadow: var(--out3d);
    background: linear-gradient(var(--col2), var(--col3));
    font: inherit;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 333ms ease-in-out;

    &:hover {
        color: #000;
    }

    .button-text {
        position: relative;
        z-index: 1;
    }

    &:active {
        scale: 0.95;
    }
}

input {
    width: 200px;
    height: 30px;
    padding: 5px;
    background-color: transparent;
    border: none;
    color: #fff;

    &::placeholder {
        color: #fffa;
        font-size: 1rem;
        font-weight: bold;
    }

    &:focus {
        outline: none;
    }

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* This stops the background colour from ever "arriving" */
    transition: background-color 5000000s ease-in-out 0s;

    /* Sets the text colour (adjust as needed) */
    -webkit-text-fill-color: #ffffff !important;

    /* Removes the default highlight outline */
    outline: none !important;
}

input::selection {
    background-color: #fff !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}

input::-moz-selection {
    background-color: #fff !important;
    color: #000 !important;
}

.card {
    position: relative;
    width: 100%;
    min-width: 340px;
    padding: 20px;
    border: none;
    border-radius: 30px;
    box-shadow: var(--card3d);
    background: var(--cardbg);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--text);
}

/****************************************/
/*  HEADER
/****************************************/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    background: black;
    box-shadow: 0 3px 5px #0008;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    z-index: 2;

    #title {
        position: absolute;
        height: 100%;
        z-index: 1;
        overflow: hidden;

        img {
            height: 101%;
        }
    }

    #title::before {
        position: absolute;
        content: "";
        top: -225px;
        left: -24px;
        width: 700px;
        height: 700px;
        background: linear-gradient(var(--col1), var(--col2), var(--col3));
        z-index: -1;
        animation: titleSpin 10s linear infinite;
    }
}

@keyframes titleSpin {
    100% {
        rotate: 360deg;
    }
}

/****************************************/
/*  MAIN
/****************************************/
main {
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding-top: 85px;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

/****************************************/
/*  FOOTER
/****************************************/
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-width: 360px;
    height: 30px;
    box-shadow: 0 -3px 5px #0008;
    text-align: center;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    z-index: 2;

    #footer-content {
        max-width: 1100px;

        #copyright {
            display: none;
        }
    }
}

#menu-container {
    position: absolute;
    right: 10px;
    top: 0px;
    z-index: 1000;

    .hide-checkbox {
        display: none;
    }

    #icon-menu {
        font-size: 24px;
        color: var(--col6);
        cursor: pointer;
        display: block;
        padding: 5px;

        &:hover {
            color: #fff;
        }
    }

    #menu {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background-color: #000d;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

        a {
            padding: 12px;
            text-decoration: none;
            color: white;
            font-size: 13px;
            letter-spacing: 1px;
            border-radius: 5px;

            &:hover {
                background: #fff2;
                color: var(--col6);
            }
        }
    }

    /* THE MAGIC: Show the menu when checkbox is checked */
    #menu-toggle:checked~#menu {
        display: flex;
    }
}

#pg-introduction {
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    #introduction {
        max-width: 500px;
        font-size: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        a {
            color: var(--col6);
            text-decoration: none;
            font-weight: bold;

            &:hover {
                text-decoration: underline;
            }
        }

    }
}

#pg-admin {
    position: relative;
    width: 100%;
    height: fit-content;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    #left,
    #right {
        height: calc(100vh - 80px - 30px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
    }

    #left {

        #form-artist {
            width: 100%;
            max-width: fit-content;
            min-width: 360px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;

            .inset {
                input {
                    width: 100%;
                    padding: 10px;
                    color: #fff;
                    box-sizing: border-box;
                }
            }
        }

        #playlist-creator {
            display: flex;
            width: 100%;
            max-width: fit-content;
            min-width: 360px;
            flex-direction: column;
            gap: 10px;
            align-items: center;

            #pl-top-window {
                .pl-loader-row {
                    display: flex;
                    gap: 10px;
                }

                #builder-list {
                    width: 100%;
                    max-height: calc(100vh - 645px);
                    display: flex;
                    flex-direction: column;
                    overflow-y: auto;

                    .chosen-track {
                        font-size: 1rem;
                        color: #ccc;
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        cursor: grab;
                        padding: 5px;

                        .remove-track {
                            color: var(--col4);
                            cursor: pointer;
                            font-size: 0.9rem;

                            &:hover {
                                color: var(--col2);
                            }
                        }

                        .track-name {
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        &.dragging {
                            opacity: 0.5;
                            background: #fff2;
                            border: 1px dashed var(--col2);
                        }

                        &:hover {
                            background: fff6;
                        }

                        &:active {
                            cursor: grabbing;
                        }
                    }
                }
            }
        }
    }

    #right {
        #pl-explorer {
            height: calc(100vh - 80px - 30px - 20px);
            display: flex;
            flex-direction: column;
            align-items: center;

            #explorer-header {
                position: relative;
                width: 340px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px 0;
            }

            #back-nav {
                position: absolute;
                left: 20px;
                cursor: pointer;
                font-weight: bold;
                font-size: 1.2rem;
            }

            #explorer-body {
                width: 100%;
                max-width: 340px;
                flex-grow: 1;
                overflow-y: auto;

                .folder-item,
                .song-item {
                    width: 100%;
                    padding: 5px;
                    font-size: 1rem;
                    background: none;
                    display: block;
                    text-align: center;
                    cursor: pointer;
                    border: none;
                    border-radius: 10px;

                    &:hover {
                        outline: solid 2px #fff8;
                        outline-offset: -2px;
                    }
                }
            }
        }
    }
}

#pg-consideration,
#pg-catalogue {
    position: relative;
    width: 100%;
    min-width: 360px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;

    #modal {
        position: absolute;
        top: 0;
        left: 10px;
        width: 340px;
        height: 500px;
        background: #000c;
        box-shadow: var(--card3d);
        backdrop-filter: blur(2px);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        overflow: scroll;
        z-index: 10;

        &.hide {
            display: none;
        }

        .modal-content {
            position: relative;
            width: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;

            #close-modal {
                position: absolute;
                top: 10px;
                left: 15px;
                font-size: 24px;
                cursor: pointer;
                color: var(--col6);
                z-index: 101;
            }

            #modal-header {
                p {
                    font-size: 14px;
                }

                i {
                    cursor: pointer;
                }
            }

            #modal-body {
                white-space: pre-wrap;
                padding: 10px;
                text-align: center;
                overflow-y: auto;
                white-space: pre-wrap;
                text-align: center;
            }
        }
    }

    #player {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        #cover {
            width: 360px;
            box-shadow: 0 10px 15px -2px var(--col6);

            img {
                width: 100%;
            }
        }

        #control-panel {
            position: relative;
            width: 340px;
            padding: 10px;
            margin-bottom: 5px;
            border-radius: 20px;
            box-shadow:
                inset 2px 2px 4px -2px #fff4,
                inset -2px -2px 4px -2px #000,
                0px 5px 10px -2px #000;
            background: #000a;
            font-size: 12px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;

            input {
                padding: 0;
            }

            i {
                cursor: pointer;
            }

            #songtitle {
                padding-left: 5px;
                text-align: left;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            #time-volume {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 5px;

                i {
                    font-size: 1rem;
                }
            }

            #timings {
                display: flex;
                justify-content: space-between;
            }

            .range-container {
                position: relative;
                width: 100%;
                height: 24px;
                display: flex;
                align-items: center;
            }

            #volume,
            #song {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                margin: 0;
                z-index: 4;
                -webkit-appearance: none;
                appearance: none;
                background: transparent !important;
                cursor: pointer;
                outline: none;
            }

            .range-track {
                position: absolute;
                width: 100%;
                height: 6px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 10px;
                z-index: 1;
            }

            .range-progress {
                position: absolute;
                height: 6px;
                background: #fff;
                border-radius: 10px;
                z-index: 2;
                pointer-events: none;
            }

            .slider::-webkit-slider-thumb {
                -webkit-appearance: none;
                appearance: none;
                width: 1.2rem;
                height: 1.2rem;
                background: #fff;
                border-radius: 50%;
                cursor: pointer;
                border: none;
            }

            .slider::-moz-range-thumb {
                width: 1.2rem;
                height: 1.2rem;
                background: #fff;
                border-radius: 50%;
                cursor: pointer;
                border: none;
            }

            #volume-controls {
                position: relative;
                min-width: 50px;
                display: flex;
                flex-grow: 1;
                align-items: center;
                gap: 5px;
            }

            #volume-slider.range-container {
                flex-grow: 1;
                width: 100%;
                position: relative;
                height: 24px;
            }

            #icons {
                position: absolute;
                left: 10px;
                bottom: 10px;
                height: 44px;
                display: flex;
                justify-content: space-around;
                align-items: center;

                i {
                    font-size: 24px;
                    padding: 10px;
                    color: var(--col6);
                    transition: 0.2s;
                    cursor: pointer;

                    &:hover {
                        color: #fff;
                        transform: scale(1.1);
                    }

                    &.hide {
                        display: none;
                    }
                }
            }

            #controls {
                width: 100%;
                font-size: 24px;
                color: var(--col3);
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;

                #play-btn,
                #pause-btn {
                    width: 27px;
                    font-size: 36px;
                }
            }
        }

        #tracklist {
            width: max-content;
            max-width: 340px;
            height: calc(100vh - 80px - 152px - 54px - 30px - 20px);
            padding-bottom: 20px;
            font-size: 1rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            overflow-y: auto;

            .back-btn-highlight {
                color: var(--col6);
                font-weight: bold;
            }

            .track {
                width: 100%;
                padding: 5px;
                border-radius: 10px;
                display: flex;
                flex-shrink: 0;
                align-items: center;
                transition: background 333ms ease;

                &:hover {
                    outline: solid 2px #fff8;
                    outline-offset: -2px;
                    /* background: #fff6; */
                }

                &.active-track {
                    background: #fff4;
                }

            }

            .track-text {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        #back-to-main {
            cursor: pointer;
        }

        i {
            padding: 2px;
            color: #fff;
            transition: 0.2s;
            cursor: pointer;

            &:hover {
                color: #fff;
            }
        }
    }
}

#pg-consideration {
    #heading {
        display: flex;
        flex-direction: column;
        align-items: center;

        p {
            width: 320px;
        }
    }
}

#pg-catalogue {
    #catalogue-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    #player {
        margin-top: 40px;
    }

    #list-header {
        position: relative;
        width: 340px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    #list-title {
        width: 100%;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    #back-nav {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--col5);
        cursor: pointer;
    }

    .track:hover,
    #back-nav:hover {
        background: #fff2;
        border-radius: 10px;
        color: #fff;
        outline: solid 2px #fff8;
        outline-offset: -2px;
    }

    #back-nav.hide {
        display: none;
    }

    .track {
        /* display: flex; */
        /* justify-content: flex-start; */
        text-align: left;
    }

    .track.active-track {
        background: #fff4;
    }

    .cat-icons i {
        padding-right: 10px !important;
    }

    .track-info {
        text-align: left;
        flex: 1;
        overflow: hidden;
    }

    .track-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

#pg-playlist {
    position: relative;
    width: 100%;
    min-width: 360px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    #saved-message {
        position: absolute;
        width: 340px;
        background: #000c;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    #pl-top-window {
        width: 100%;
        max-width: fit-content;
        background: #000a;
    }

    #playlistName {
        padding: 10px;
        background: #222;
        border: 1px solid #444;
        color: #fff;
        box-sizing: border-box;
    }

    .pl-loader-row {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    #builder-list {
        width: 100%;
        max-height: 120px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;

        .chosen-track {
            font-size: 1rem;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: grab;

            .remove-track {
                color: var(--col4);
                cursor: pointer;
                font-size: 0.9rem;
            }

            .remove-track:hover {
                color: var(--col2);
            }

            .track-name {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                padding-right: 10px;
            }

            &.dragging {
                opacity: 0.5;
                background: #fff4;
                border: 1px dashed var(--col2);
            }

            &:hover {
                background: #fff2;
            }

            &:active {
                cursor: grabbing;
            }

        }
    }

    #pl-explorer {
        height: calc(100vh - 80px - 30px - 20px - 251px);
        display: flex;
        flex-direction: column;
        align-items: center;

        #explorer-header {
            position: relative;
            width: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #back-nav {
            position: absolute;
            left: 15px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.2rem;
        }

        #view-title {
            margin: 0;
            font-weight: bold;
            font-size: 1rem;
            text-align: center;
            width: 100%;
        }
    }

    #explorer-body {
        width: max-content;
        max-width: 340px;
        flex-grow: 1;
        overflow-y: auto;

        .folder-item,
        .song-item {
            width: 100%;
            padding: 5px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: none;
            display: block;
            text-align: center;
            cursor: pointer;
        }

        .folder-item:hover,
        .song-item:hover {
            outline: solid 2px #fff8;
            outline-offset: -2px;
        }
    }

    .playlist-grid {
        display: flex;
        gap: 10px;
        height: 600px;
        background: #111;
        padding: 10px;
    }

    .pl-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #1a1a1a;
        border: 1px solid #333;
    }

    .pl-col-head {
        background: #333;
        padding: 12px;
        font-size: 0.75rem;
        font-weight: bold;
        color: var(--col4);
        font-weight: bold;
        border-bottom: 1px solid #444;
        text-transform: uppercase;
    }

    .pl-col-body {
        flex-grow: 1;
        overflow-y: auto;
    }

    .pl-msg {
        padding: 20px;
        color: #555;
        text-align: center;
        font-size: 0.8rem;
    }

    .pl-footer {
        padding: 15px;
        background: #111;
        border-top: 1px solid #333;
    }

    #save-pl-btn {
        border: none;
        font-weight: bold;
        cursor: pointer;
        height: 40px;
        font-size: 1rem;
    }

    .pl-controls {
        display: flex;
        gap: 10px;
    }


    .pl-select {
        flex-grow: 1;
        background: #222;
        color: #fff;
        border: 1px solid #444;
        padding: 5px;
        height: 40px;
    }
}

#pg-contact {
    position: relative;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;

    #contact-container {
        width: 340px;
        margin-top: 40px;

        h2 {
            text-align: center;
        }
    }

    #form-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

        /* 1. Make the wrappers and insets full width */
        >div {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;

            .inset {
                width: 320px;
            }
        }

        textarea {
            width: 100%;
            background: transparent;
            border: none;
            color: #fff;
            padding: 10px;
            font-family: inherit;
            resize: none;
            outline: none;
            text-align: center;

            &::placeholder {
                color: var(--col6);
                font-weight: bold;
            }
        }


        input {
            width: 100%;
            color: #fff;
            text-align: center;

            &::placeholder {
                color: var(--col6);
                font-weight: bold;
            }
        }

        #btn-submit {
            transition: 0.3s;

            &:hover {
                background: var(--col1);
            }
        }
    }

    button {
        width: fit-content;
        padding: 5px 20px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px;
        background: var(--col6);
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;

        &:hover {
            opacity: 0.8;
        }
    }
}

#pg-terms {
    position: relative;
    width: 100%;
    min-width: 360px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;

    .legal-content {
        width: 100%;
        max-width: 500px;
        max-height: 500px;
        background: #0004;
        padding: 20px;
        padding-bottom: 40px;
        border-radius: 20px;
        backdrop-filter: blur(3px);
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: scroll;
    }

    .legal-section {
        h3 {
            color: var(--col6);
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #ccc;
        }

        a {
            color: var(--col6);
            text-decoration: none;
            font-weight: bold;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}

.error-highlight {
    outline: 1px solid #f44 !important;
    outline-offset: -1px;
    background: #ff4d4d11 !important;
    box-shadow: 0 0 5px #f444;
    transition: all 333ms ease;
}

.inset {
    transition: border 333ms ease, background 333ms ease;
}

.hide {
    display: none !important;
}

/****************************************/
/*  MEDIA QUERIES
/****************************************/
@media(min-width:500px) {
    #tracklist {
        width: 100%;
    }

    footer {
        #footer-content {
            #copyright {
                display: inline;
            }
        }
    }
}

@media (min-width: 768px) {
    #pg-catalogue {
        #modal-body {
            font-size: 12px;
        }

        #player {
            margin-top: 0;
        }
    }

    #save-pl-btn {
        height: 30px;
        font-size: 0.85rem;
    }

    .pl-select {
        height: 30px;
        border: none;
        border-radius: 8px;
        box-shadow: var(--out3d);
        background: linear-gradient(var(--col2), var(--col3));
        color: #fff;

        select option {
            background-color: #f0f0f0;
            color: var(--col1);
        }

        option[value="special"] {
            background-color: var(--col2);
        }
    }
}




::-webkit-scrollbar-track {
    margin: 1px;
    color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;

}

::-webkit-scrollbar-thumb {
    border: 1px solid var(--bgMain);
    border-radius: 10px;
    background: var(--contrastMainMid);
}