* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background-color: #121212;
}

.header {
    font-size: 2.5rem;
    justify-self: center;
    color: #00BFA6;
    margin-top: auto;
}

.bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00BFA6;
    width: 100px;
    margin-left: 10px;
    order: 0;
    border-radius: 8px;
    
}

.d2 {
    background-color: #008E7F;
    height: 100px;
    width: 100px;
    order: 1;
}

.container {
    display: flex;
    grid-column: 2;
    justify-content: space-around;
    align-items: flex-end;
}

.frame {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    border: solid;
    border-color: #00BFA6;
    background-color: #1E1E1E;
    border-radius: 10px;
    overflow: auto;
    padding: 20px;
    align-items: flex-start;
}

.div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.b1 {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #00BFA6;
    color: #121212;
    font-weight: bold;
}

.b1:hover {
    background-color: #26D6BB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.b1:active {
    transform: translateY(0);
}

.buttons {
    display: flex;
    justify-content: center;
}

#sort {
    height: 50px;
    margin-top: 25px;
}

.other {
    display: flex;
    border-radius: 16px;
    background-color: #00504A;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px;
    gap: 10px;
}

.options {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 9vw;
    top: 36vh;
}

.slidercontainer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: 90vw;
    top: 20vh;
}

.slidercontainer h2 {
    color: #00BFA6;
}

.theslider {
    -webkit-appearance: slider-vertical;
    height: 320px;
}

.theslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
}

.theslider::-webkit-slider-runnable-track {
    background-color: #2a2a2a;
    border-radius: 10px;
}

#opacity {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    z-index: 2;
    background-color: #121212;
}


#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1E1E1E;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00BFA6;
    color: white;
    z-index: 1000;
}

#inputArray {
    width: 100%;
    margin: 10px 0;
    padding: 5px;
}

.popup-buttons {
    text-align: right;
}
