﻿/*---- MainLayout ----*/

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-flexbox {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 80px;
    margin-bottom: 20px;
}

    .header-flexbox .left {
        display: flex;
        justify-content: start;
    }

    .header-flexbox .right {
        display: flex;
        justify-content: start;
        align-items: center;
        flex: 1;
    }

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 70px;
}

.logo {
    width: 28px;
    height: auto;
    color: slateblue;
    margin-right: 10px;
}

.page-container {
    margin-left: 20px;
}

/*---- Anchors and Buttons ----*/

.interactive-base {
    height: fit-content;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #333333;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    cursor: pointer;
    font-size: 15px;
    text-wrap: nowrap;
    margin-right: 10px;
}

#interactive-light {
    margin-left: 0px;
    color: black;
    background-color: white;
}

.file-selector-hidden {
    display: none;
}

.loading {
    animation: pulse 1s infinite;
    pointer-events: none;
}

.choice {
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-wrap: nowrap;
    font-size: 15px;
    border: none;
    padding: 7px 15px;
    margin: 10px;
}

.choice-selected {
    color: black;
    background-color: white;
    box-shadow: #333333 0px 4px, slateblue 0px 8px;
}

.choice-unselected {
    color: white;
    background-color: #333333;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/*---- FileManager ----*/

.file-manager-container {
    min-height: 100px;
}

.file-manager-information {
    margin-top: 20px;
    margin-left: 10px;
}

    .file-manager-information p {
        margin-top: 0px;
        margin-bottom: 5px;
    }

.file-errors {
    color: #D32F2F;
}

/*---- Effect Pages ----*/

.effect-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    background-color: #333333;
}

.effect-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.effect-title {
    margin: 10px 0px 7px 15px;
    color: white;
}

#reset-button {
    height: auto;
    margin-right: 8px;
    padding-left: 20px;
    border-radius: 0px;
    border-left: 1px solid white;
}

.effect-main-row {
    border-top: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

    .effect-main-row p {
        color: white;
        font-size: 13px;
    }

    .effect-main-row div {
        display: flex;
    }

.equalization {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-bottom: 0px;
}

.equalizer {
    color: white;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    display: flex;
    border-top: 1px solid white;
    padding: 15px 0px 30px 0px;
}

    .equalizer div {
        padding: 0px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .equalizer div p {
            font-size: 13px;
        }

.slider {
    accent-color: white;
    width: 100%;
    cursor: pointer;
    touch-action: pan-y;
}

@media (max-width: 570px) {
    .equalizer {
        flex-direction: column;
    }
}