* {
    scrollbar-color: #FFBAE3 #fefec3;
}
body {
    margin: 0;
    font-family: 'Jersey 25', cursive;
    background-color: #fefefe;
}

h1 {
    margin: 0;
    font-family: 'Jersey 25', cursive;
    color: #333;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 8vh; 
    height: 100vh;
    background: #444;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 12px rgba(0,0,0,0.08);
}
.sidebar * {
    box-sizing: border-box;
    height: 10%;
}

.icon {
    width: 5vh;
    height: 5vh;
    margin: 2vh auto;
}
.pop-title-bar {
    border-radius: 10px 10px 0 0;;
}
.title-bar {
    position: relative;
    height: 4.4vh;
    display: flex;
    border-bottom: 3px solid #6d6d6d;
    align-items: center;
    padding-left: 1vh;
    font-size: 16px;
}
.title-bar h1 {
    margin-left: 1vh;
    font-size: 4vh;
}



.retro-input {
    width: 100%;
    padding: 1.2vh;
    border: 2px solid #999;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Jersey 25', cursive;
    background-color: white;
    box-shadow: inset 2px 2px 0px #bbb;
    transition: 0.2s ease-in-out;
   
}

.retro-input:focus {
    outline: none;
    border-color: #ff8bd1;
    box-shadow: 0 0 5px #ffb8e5;
}




.pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30vw;
    height: auto; 
    background-color: #fefec3; 
    border: 5px solid #6d6d6d; 
    box-shadow: -3px 3px 0 #807b7b; 
    border-radius: 15px; 
    z-index: 100;
    padding: 0 0 1vh 0;
    flex-direction: column;
    margin-left: 1vh;
    justify-content: center;
    font-family: 'Jersey 25', cursive; 
    color: #333;
}

.pop-title-bar{
    position: relative;
    height: 4.4vh;
    display: flex;
    border-bottom: 3px solid #6d6d6d;
    align-items: center;
    padding-left: 1vh;
    font-size: 16px;
    background-color: #7686EE;
    
}

.pop-title-bar h1 {
    font-size: 2vh;
}

.pop-title-bar .x-icon {
    position: absolute;
    top: 25%; 
    right: 3%;
    width: 2vh;
    height: 2vh;
    cursor: pointer;
}
.button-shadow {
    box-sizing: border-box;
    position: absolute;
    display: inline-block;
    border: 0.3vh solid black;
    border-radius: 1.5vh;
    z-index: 1;
    background-color: white;
}
.button {
    position: absolute;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'Jersey 25', serif;
    color: #333;
    border: 0.3vh solid black;
    border-radius: 1.5vh;
    cursor: pointer;
    user-select: none;
    text-align: center;
    transition: transform 0.1s ease-in-out;
    z-index: 2;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}