@font-face {
    font-family: 'jetbrains-mono';
    src: url('/assets/fonts/jetbrains-mono/JetBrainsMono-Regular.woff2');
}

@font-face {
    font-family: 'gg-sans';
    src: url('/assets/fonts/gg-sans/gg sans Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'gg-sans';
    src: url('/assets/fonts/gg-sans/gg sans Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html,
body {
    height: 100%;
    margin: 0;
}

html {
    overflow: hidden;
}

body {
    background-color: #6073b4;
}

.navbar {
    position: flex;
    background-color: #202427;
    border-style: solid;
    border-color: #3c3737;
    border-width: 2px;
    border-radius: 100px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    margin: 20px 100px 20px;
    display: flex;
    align-items: center;
}

.title {
    display: flex;
    align-items: center;
}

.title p {
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    padding-left: 10px;
}

.title img {
    position: relative;
    max-width: 40px;
    max-height: 40px;
    border-radius: 100px;
    margin-left: 10px;
    outline-style: solid;
    outline-color: #FFFFFF;
    outline-width: 1px;
}

.buttons {
    display: flex;
    margin: auto 20px auto auto;
    gap: 10px
}

.btn {
    background-color: #202427;
    border: none;
    color: white;
    padding: 7px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.btn.dashboard {
    color: #91a3e0;
}

.btn.logout {
    visibility: hidden;
    color: #545454;
}

.btn.dashboard:hover {
    background-color: #2c2f31;
}

.btn.docs:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn.logout:hover {
    color: #ff6467;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn.manage {
    color: #ffffff;
    background-color: #3c3c3c;
}

.btn.manage:hover {
    color: #ffffff;
    background-color: #484848;
}

.btn.access {
    color: #ffffff;
    background-color: #3c3c3c;
}

.btn.access:hover {
    color: #ffffff;
    background-color: #484848;
}

.btn.add {
    display: none;
    background-color: #3c3c3c;

}

.btn.add:hover {
    background-color: #484848;
}

.btn.remove {
    background-color: #3c3c3c;

}

.btn.remove:hover {
    background-color: #484848;
}

.home {
    animation: 1s ease-out 0s 1 slideInFromBottom;
    display: flex;
    justify-content: left;
    align-items: center;
    height: 75%;
}

.logo {
    z-index: -1;
    width: 40%;
    padding-left: 125px;
    user-select: none;
}

.maintitle {
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 2px #817c7c;
    font-size: 80px;
}

.vertical-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hometext {
    z-index: -1;
    position: absolute;
    margin-top: 200px;
    color: white;
    text-align: center;
    text-underline-offset: 2px;
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.serverlist {
    position: relative;
    background-color: #202427;
    border-style: solid;
    border-color: #3c3737;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    margin: 20px 100px 20px;
    flex-wrap: wrap;
    overflow: auto;
    height: calc(100vh - 130px);
}

.server {
    position: flex;
    background-color: #202427;
    border-style: solid;
    border-color: #3c3737;
    border-width: 2px;
    border-radius: 100px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    margin: 20px;
    padding: 0px 10px 0px 10px;
    overflow: auto;
}

.server img {
    max-width: 40px;
    max-height: 40px;
    border-radius: 100px;
    outline-style: solid;
    outline-color: #FFFFFF;
    outline-width: 1px;
}

.server p {
    padding: 0px 10px 0px 5px;
    color: white;
    font-size: 20px;
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p.serverid {
    color: #545454;
}

p.server-err {
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ff6467;
    text-align: center;
}

p.server-loading {
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #545454;
    text-align: center;
}

.useraccess {
    position: flex;
    background-color: #202427;
    border-style: solid;
    border-color: #3c3737;
    border-width: 2px;
    border-radius: 100px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    margin: 20px;
    padding: 0px 10px 0px 10px;
    overflow: auto;
}

.useraccess p {
    padding: 0px 10px 0px 5px;
    color: white;
    font-size: 20px;
    font-family: gg-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p.rank {
    color: #545454;
}

.addbuttondiv {
    position: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}