body{
    height: 100vh;
}
header{
    position: static;
    border: none;
    border-radius: 0;
    background-color: white;
}
nav{
    display: none;
}
menu{
    width: 85px;
    height: 100%;
    box-sizing: border-box;
    padding: 25px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    background-color: white;
}
@media (max-width: 600px) {
    menu{
        width: calc(100% - 20px);
        height: 60px;
        position: fixed;
        left: 10px;
        bottom: 10px;
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        border: 1px black solid;
        border-radius: 20px;
        z-index: 5;
    }
}



.panel-layout{
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    background-color: white;
}
.main-container{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 40px 50px;
    display: flex;
    border-radius: 20px 0 0 0;
    background-color: #EDF2FA;
    overflow-y: auto;
}
@media (max-width: 1000px) {
    .main-container{
        padding: 25px 25px 25px 30px;
    }
}
@media (max-width: 600px) {
    .main-container{
        padding: 25px 4.5vw;
        border-radius: 0;
    }
}



.panel-sections{
    width: 100%;
    height: fit-content;
    padding-bottom: 100px;
    display: none;
}
.panel-sections.servers{
    flex-direction: column;
    gap: 40px;
    h2{
        font-size: 25px;
    }
}
.panel-sections.rate{
    justify-content: center;
}
.panel-sections.active{
    display: flex;
}
.servers-layout{
    width: 100%;
}
.server-sect{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 25px 25px 25px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 25px;
    background-color: white;
}
.server-sect.disabled{
    background-color: #ff8f8f;
}
.header-info{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    p{
        font-size: 20px;
        justify-self: start;
        margin-right: auto;
    }
}
.event-container{
    width: auto;
    height: 45px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    button{
        height: 100%;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px black solid;
        border-radius: 10px;
        background-color: white;
        svg{
            width: 20px;
            height: auto;
            fill: black;
            transition: all .3s;
        }
    }
    button:hover{
        svg{
            fill: #2667FF;
        }
    }
}
.major-info-cont{
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 25px;
}
.major-info-cont.active{
    display: flex;
}
.server-status{
    width: 10px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 15px;
    left: 15px;
    border: none;
    border-radius: 50%;
    background-color: #2667FF;
}
.server-status.off{
    border: 1px black solid;
    background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 800px) {
    .event-container{
        justify-content: start;
    }
}
@media (max-width: 600px) {
    .panel-sections{
        gap: 20px;
    }
    .server-sect{
        padding: 10px;
    }
    .panel-sections.servers h2{
        text-align: center;
    }
    .header-info p{
        font-size: 20px;
        margin-left: 10px;
    }
    .server-status{
        top: 10px;
        left: 10px;
    }
}
@media (max-width: 400px) {
    .header-info p{
        font-size: 15px;
        margin-left: 20px;
    }
}



.start-header-btn{
    display: none;
}
.unwrap-button{
    height: 45px;
    aspect-ratio: 1/1;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    background-color: white;
    svg{
        height: 12px;
        width: auto;
        fill: black;
        transition: all .3s;
    }
}
.unwrap-button:hover{
    svg{
        fill: #2667FF;
    }
}
.unwrap-button.active{
    svg{
        rotate: 180deg;
    }
}
@media (max-width: 900px) {
    .unwrap-button.users{
        margin-right: -20px;
    }
}
@media (max-width: 800px) {
    .unwrap-button{
        height: 60px;
        margin: 0;
    }
}



.input-module{
    max-width: 750px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    p{
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        svg{
            width: auto;
            height: 20px;
            cursor: pointer;
        }
    }
    .copy-input{
        width: 100%;
        height: 50px;
        box-sizing: border-box;
        padding: 0 15px 0 25px;
        border: 1px black solid;
        border-radius: 15px;
        font-size: 16px;
        font-family: "Manrope", sans-serif;
        letter-spacing: 0.05em;
    }
    .copy-input.users{
        display: flex;
        justify-content: space-between;
        align-items: center;
        svg{
            width: auto;
            height: 20px;
            cursor: pointer;
        }
        p{
            width: 80%;
            font-size: 16px;
            overflow-x: hidden;
        }
    }
}



.alternative-servers-text{
    font-size: 20px;
    span{
        color: #2667FF;
        cursor: pointer;
    }
}
@media (max-width: 600px) {
    .alternative-servers-text{
        text-align: center;
    }
}



.menu-icons{
    width: 30px;
    height: auto;
    fill: #9C9C9C;
    cursor: pointer;
    transition: all .3s;
}
.menu-icons.active{
    fill: #2667FF;
}
.menu-icons:hover{
    fill: #2667FF;
}