/* /Components/Pages/AddServer.razor.rz.scp.css */
.loading[b-2dnp48iugr] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    align-items: center;
}

.server-container[b-2dnp48iugr] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
}

.server-wrapper[b-2dnp48iugr] {
    width: 100%;
    display: grid;
    justify-items: center
}

.title[b-2dnp48iugr] {
    color: white;
    display: grid;
    justify-items: center;
    margin-bottom: 2rem;
    text-align: center;
    
    & h1 {
        margin-bottom: 0;
    }
}

.no-servers[b-2dnp48iugr] {
    color: white;
    display: grid;
    justify-items: center;
    
    & img {
        border-radius: var(--default-border-radius);
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .server-container[b-2dnp48iugr] {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
    }
}

@media (max-width: 900px) {
    .server-container[b-2dnp48iugr] {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .server-container[b-2dnp48iugr] {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }

    .no-servers[b-2dnp48iugr] {
        & img {
            width: 300px;
        }
    }
}
/* /Components/Pages/AddServerForm.razor.rz.scp.css */
.header[b-p6q2zstitr] {
    display: grid;
    grid-template-columns: min-content max-content;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    
    & img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    & h1[b-p6q2zstitr] {
        color: white;
    }
}

[b-p6q2zstitr] form {
    display: grid;
    grid-gap: 2rem;
    grid-column: 2;
}

.form-group[b-p6q2zstitr] {
    display: grid;
    color: white;
    
    & label {
        margin-bottom: 6px;
        user-select: none;
    }
}

.form-check[b-p6q2zstitr] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.form-container[b-p6q2zstitr] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.validation-messages[b-p6q2zstitr] {
    color: red;
}

.bot-invite[b-p6q2zstitr] {
    color: var(--color-white);
    
    p {
        margin: 0 0 6px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .form-container[b-p6q2zstitr] {
        grid-template-columns: 100px 1fr 100px;
    }
}

@media (max-width: 900px) {
    .form-container[b-p6q2zstitr] {
        grid-template-columns: 100px 1fr 100px;
    }

    .header[b-p6q2zstitr] {
        & h1 {
            font-size: larger;
        }
    }
}

/* Mobile */
@media (max-width: 600px) {
    .form-container[b-p6q2zstitr] {
        grid-template-columns: 10px 1fr 10px;
    }
    
    .header[b-p6q2zstitr] {
        & h1 {
            font-size: larger;
        }
    }
}
/* /Components/Pages/Components/Inputs/Button.razor.rz.scp.css */
button[b-qhc1u9lmy1] {
    display: flex;
    height: var(--default-element-height);
    border-radius: var(--default-border-radius);
    color: white;
    border: none;
    font-weight: 700;
    align-items: center;
    gap: 6px;
    font-size: medium;
    padding: 5px 10px;

    &:not(:disabled):hover {
        cursor: pointer;
        opacity: .8;
    }

    &:disabled[b-qhc1u9lmy1] {
        cursor: not-allowed;
        opacity: .5;
    }
    
    &.fullwidth[b-qhc1u9lmy1] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/Components/Inputs/LinkButton.razor.rz.scp.css */
button[b-6ukyxlg3mh] {
    display: flex;
    height: var(--default-element-height);
    border-radius: var(--default-border-radius);
    color: white;
    border: none;
    font-weight: 700;
    align-items: center;
    gap: 6px;
    font-size: medium;
    padding: 5px 10px;

    &:hover {
        cursor: pointer;
        opacity: .8;
    }
    
    &.fullwidth[b-6ukyxlg3mh] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/Components/Inputs/Switch.razor.rz.scp.css */
.switch-wrapper[b-ybkvq4azin] {
    display: inline-block;
}

.switch[b-ybkvq4azin] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input[b-ybkvq4azin] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-ybkvq4azin] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .25s;
    border-radius: 24px;
}

.slider[b-ybkvq4azin]:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .25s;
    border-radius: 50%;
}

input:checked + .slider[b-ybkvq4azin] {
    background-color: var(--color-primary);
}

input:checked + .slider[b-ybkvq4azin]:before {
    transform: translateX(16px);
}

input:disabled + .slider[b-ybkvq4azin] {
    background-color: #aaa;
    cursor: not-allowed;
}
/* /Components/Pages/Components/Inputs/Tag.razor.rz.scp.css */
.tag[b-mke7f193al] {
    background: var(--color-dark);
    border: solid 1px var(--color-primary);
    border-radius: 10px;
    padding: 2px 4px;
    font-size: small;
    display: flex;
    gap: 4px;
    text-wrap: nowrap;
    color: var(--color-white);
    
    span {
        height: 16px;
        width: 16px;
        display: block;
        line-height: 1.4;
        text-align: center;
        background: var(--color-primary);
        border-radius: 50%;
    }
    
    &.clickable:hover[b-mke7f193al] {
        cursor: pointer;
        opacity: .5;
    }
}
/* /Components/Pages/Components/Inputs/TagInput.razor.rz.scp.css */
input[type=text][b-6dljwwz8bi] {
    border-radius: var(--default-border-radius);
    background: var(--color-dark);
    border: solid 1px var(--color-primary);
    padding: 6px;
    color: white;
    font-size: medium;

    &:focus {
        outline: none;
    }
    
    &:disabled[b-6dljwwz8bi] {
        border: solid 1px var(--color-darkest);
    }
}

.tags[b-6dljwwz8bi] {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}
/* /Components/Pages/Components/Inputs/TextAreaInput.razor.rz.scp.css */
textarea[b-yltouzmam3] {
    border-radius: var(--default-border-radius);
    background: var(--color-dark);
    border: solid 1px var(--color-primary);
    padding: 6px;
    color: white;
    resize: vertical;
    
    &:focus {
        outline: none;
    }
}
/* /Components/Pages/Components/Inputs/TextInput.razor.rz.scp.css */
.simple-input[b-6jk8equ6ml] {
    border-radius: var(--default-border-radius);
    background: var(--color-dark);
    border: solid 1px var(--color-primary);
    padding: 6px;
    color: white;
    font-size: medium;
    width: 100%;
    box-sizing: border-box;

    &:focus {
        outline: none;
    }
}

.input-wrapper[b-6jk8equ6ml] {
    display: grid;
    grid-template-columns: auto 1fr;
    border-radius: var(--default-border-radius);
    background: var(--color-dark);
    border: solid 1px var(--color-primary);
    padding: 6px;
    color: white;

    & input {
        background: none;
        border: none;
        color: white;
        font-size: medium;

        &:focus {
            outline: none;
        }
    }
    
    & span[b-6jk8equ6ml] {
        user-select: none;
        text-wrap: nowrap;
    }
}
/* /Components/Pages/Components/Layout/ListingCard.razor.rz.scp.css */
.card-wrapper[b-h06nt6oux5] {
    border: 2px var(--color-primary) solid;
    padding: 6px;
    border-radius: 12px;
    background: var(--color-dark);
    color: white;
    width: 250px;
    gap: 10px;
    display: grid;

    .header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 6px;

        & img {
            border-radius: 50%;
            height: 60px;
            width: 60px;
        }

        .title[b-h06nt6oux5] {
            display: grid;
            grid-template-rows: 1fr 1fr;
            align-items: center;

            & h3 {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                margin: 0 0 4px;
            }
        }
        
        &:hover[b-h06nt6oux5] {
            cursor: pointer;
        }
    }

    .tags[b-h06nt6oux5] {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: thin;
        height: 23px;
        background: var(--color-darker);
        border-radius: 20px;
        padding: 4px;
    }
    
    .description[b-h06nt6oux5] {
        margin: 0;
        height: 100px;
        overflow-y: auto;
        overflow-wrap: break-word;
    }
    
    .bump-time[b-h06nt6oux5] {
        color: var(--color-gray);
        text-align: center;
    }
}
/* /Components/Pages/Components/Layout/Loader.razor.rz.scp.css */
.loader[b-ajfzu5qs3n] {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: var(--color-primary) transparent;
    animation: l1-b-ajfzu5qs3n 1s infinite;
}
@keyframes l1-b-ajfzu5qs3n {to{transform: rotate(.5turn)}}
/* /Components/Pages/Components/Layout/MainLayout.razor.rz.scp.css */
.layout[b-0z9wynk3tr] {
    padding: 8px;
    /*height: calc(100% - 56px); !* header is 56 px *!*/
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .layout[b-0z9wynk3tr] {
        padding-bottom: 20px;
    }
}
/* /Components/Pages/Components/Layout/ManageListingCard.razor.rz.scp.css */
.card-wrapper[b-dakw933m35] {
    border: 2px var(--color-primary) solid;
    padding: 6px;
    border-radius: 12px;
    background: var(--color-dark);
    color: white;
    width: 250px;
    gap: 10px;
    display: grid;

    .header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 6px;

        & img {
            border-radius: 50%;
            height: 60px;
            width: 60px;
        }

        .title[b-dakw933m35] {
            display: grid;
            grid-template-rows: 1fr 1fr;
            align-items: center;

            & h3 {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                margin: 0 0 4px;
            }
        }
    }

    .tags[b-dakw933m35] {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: thin;
        height: 23px;
        background: var(--color-darker);
        border-radius: 20px;
        padding: 4px;
    }
    
    .description[b-dakw933m35] {
        margin: 0;
        height: 100px;
        overflow-y: auto;
        overflow-wrap: break-word;
    }
    
    .status[b-dakw933m35] {
        text-align: center;
        width: fit-content;
        justify-self: center;
        padding: 4px;
        border-radius: 12px;
        
        &.review {
            border: 1px var(--color-primary) solid;
            color: var(--color-primary);
        }
        
        &.public[b-dakw933m35] {
            border: 1px var(--color-green) solid;
            color: var(--color-green);
        }

        &.private[b-dakw933m35] {
            border: 1px var(--color-white) solid;
            color: var(--color-white);
        }
    }
}
/* /Components/Pages/Components/Layout/Modal.razor.rz.scp.css */
.backdrop[b-kmflweo8ay] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}

.modal[b-kmflweo8ay] {
    position: absolute;
    background: var(--color-darker);
    padding: 10px;
    border: 2px var(--color-primary) solid;
    border-radius: var(--default-border-radius);
    color: var(--color-white);
    display: grid;
    grid-gap: 10px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* /Components/Pages/Components/Layout/ServerCard.razor.rz.scp.css */
.card-wrapper[b-281uf50uwx] {
    border: 2px var(--color-primary) solid;
    padding: 6px;
    border-radius: 12px;
    background: var(--color-dark);
    color: white;
    width: 250px;
    gap: 10px;
    display: grid;
    
    .header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 6px;
        
        & img {
            border-radius: 50%;
            height: 60px;
            width: 60px;
        }
        
        .title[b-281uf50uwx] {
            display: grid;
            grid-template-rows: 1fr 1fr;
            align-items: center;
            
            & h3 {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                margin: 0 0 4px;
            }
        }
    }
}
/* /Components/Pages/Components/Layout/ToastProvider.razor.rz.scp.css */
.toast-wrapper[b-owp8zwbhyd] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: var(--default-border-radius);
    color: white;
    z-index: 9999;
    background: var(--color-darkest);
    
    p {
        margin: 0;
    }
    
    &.info[b-owp8zwbhyd] {
        border: 2px var(--color-primary) solid;
    }
    
    &.success[b-owp8zwbhyd] {
        border: 2px var(--color-green) solid;
    }
    
    &.warning[b-owp8zwbhyd] {
        border: 2px var(--color-red) solid;
    }
}
/* /Components/Pages/Components/Layout/TopBar.razor.rz.scp.css */
.topbar[b-0zka3i9tjb] {
    height: var(--default-element-height);
    padding: 8px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branding[b-0zka3i9tjb] {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    
    & h1 {
        color: white;
        margin: 0;

        &:focus-visible {
            outline: none;
        }
    }
}

.profile[b-0zka3i9tjb] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.2);
    padding: 4px;
    padding-right: 8px;
    border-radius: var(--default-border-radius);
    max-width: 200px;
    
    &:hover {
        cursor: pointer;
    }
    
    & h3[b-0zka3i9tjb] {
        margin: 0;
        color: white;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    & img[b-0zka3i9tjb] {
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }
}

.profile-menu[b-0zka3i9tjb] {
    position: absolute;
    right: 0;
    background: var(--color-primary);
    border-radius: 0 0 0 var(--default-border-radius);
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    
    .menu-item {
        display: flex;
        color: white;
        align-items: center;
        gap: 10px;
        padding: 8px;
    }
    
    .menu-item:hover[b-0zka3i9tjb] {
        cursor: pointer;
        background: rgba(255,255,255,.2);
        border-radius: var(--default-border-radius);
    }
    
    .divider[b-0zka3i9tjb] {
        height: 1px;
        background: white;
    }
}

.profile-menu-backdrop[b-0zka3i9tjb] {
    position: fixed;
    height: 100%;
    width: 100%;
}
/* /Components/Pages/EditListing.razor.rz.scp.css */
.header[b-nbkyo8pvt1] {
    display: grid;
    grid-template-columns: min-content max-content;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    
    & img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    & h1[b-nbkyo8pvt1] {
        color: white;
    }
}

[b-nbkyo8pvt1] form {
    display: grid;
    grid-gap: 2rem;
    grid-column: 2;
}

.form-group[b-nbkyo8pvt1] {
    display: grid;
    color: white;
    
    & label {
        margin-bottom: 6px;
        user-select: none;
    }
}

.form-check[b-nbkyo8pvt1] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.form-container[b-nbkyo8pvt1] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.validation-messages[b-nbkyo8pvt1] {
    color: red;
}

.action-buttons[b-nbkyo8pvt1] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
}

.modal-actions[b-nbkyo8pvt1] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Tablet */
@media (max-width: 1200px) {
    .form-container[b-nbkyo8pvt1] {
        grid-template-columns: 100px 1fr 100px;
    }
}

@media (max-width: 900px) {
    .form-container[b-nbkyo8pvt1] {
        grid-template-columns: 100px 1fr 100px;
    }

    .header[b-nbkyo8pvt1] {
        & h1 {
            font-size: larger;
        }
    }
}

/* Mobile */
@media (max-width: 600px) {
    .form-container[b-nbkyo8pvt1] {
        grid-template-columns: 10px 1fr 10px;
    }

    .header[b-nbkyo8pvt1] {
        & h1 {
            font-size: larger;
        }
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.server-container[b-351rivtc3l] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
}

.server-wrapper[b-351rivtc3l] {
    width: 100%;
    display: grid;
    justify-items: center
}

.title[b-351rivtc3l] {
    color: white;
    display: grid;
    justify-items: center;
    margin-bottom: 2rem;
    text-align: center;

    & h1 {
        margin-bottom: 0;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .server-container[b-351rivtc3l] {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
    }
}

@media (max-width: 900px) {
    .server-container[b-351rivtc3l] {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .server-container[b-351rivtc3l] {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }

    .no-servers[b-351rivtc3l] {
        & img {
            width: 300px;
        }
    }
}
/* /Components/Pages/MyServers.razor.rz.scp.css */
.loading[b-b9cnfni7g5] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    align-items: center;
}

.server-container[b-b9cnfni7g5] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
}

.server-wrapper[b-b9cnfni7g5] {
    width: 100%;
    display: grid;
    justify-items: center
}

.title[b-b9cnfni7g5] {
    color: white;
    display: grid;
    justify-items: center;
    margin-bottom: 2rem;
    text-align: center;

    & h1 {
        margin-bottom: 0;
    }
}

.no-servers[b-b9cnfni7g5] {
    color: white;
    display: grid;
    justify-items: center;

    & img {
        border-radius: var(--default-border-radius);
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .server-container[b-b9cnfni7g5] {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1rem;
    }
}

@media (max-width: 900px) {
    .server-container[b-b9cnfni7g5] {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .server-container[b-b9cnfni7g5] {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }

    .no-servers[b-b9cnfni7g5] {
        & img {
            width: 300px;
        }
    }
}
/* /Components/Pages/Server.razor.rz.scp.css */
.header[b-w4jg5bor5f] {
    display: grid;
    grid-template-columns: min-content max-content;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;

    & img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    & h1[b-w4jg5bor5f] {
        color: white;
        margin: 0;
    }
}

.outer-wrapper[b-w4jg5bor5f] {
    display: flex;
    justify-content: center;
    height: 100%;
}

.wrapper[b-w4jg5bor5f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-wrap: anywhere;
    width: 1000px;
    height: 100%;
}

.tags[b-w4jg5bor5f] {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.text-wrapper[b-w4jg5bor5f] {
    background: var(--color-dark);
    border-radius: var(--default-border-radius);
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    
    &.large {
        height: 700px;
        overflow-y: scroll;
    }
    
    p[b-w4jg5bor5f], pre[b-w4jg5bor5f] {
        color: var(--color-white);
        margin: 0;
    }
    
    .short-description[b-w4jg5bor5f] {
        text-align: center;
        color: var(--color-gray);
    }
    
    .description[b-w4jg5bor5f] {
        white-space: pre-wrap;
    }
}

.report-text[b-w4jg5bor5f] {
    color: var(--color-red);
    text-align: center;
    
    &:hover {
        text-decoration: underline;
        cursor: pointer;
    }
}

.modal-actions[b-w4jg5bor5f] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Tablet */
@media (max-width: 1200px) {
    .text-wrapper[b-w4jg5bor5f] {
        &.large {
            height: 500px;
        }
    }

    .wrapper[b-w4jg5bor5f] {
        width: 500px;
    }
}

@media (max-width: 900px) {
    .text-wrapper[b-w4jg5bor5f] {
        &.large {
            height: 600px;
        }
    }

    .wrapper[b-w4jg5bor5f] {
        width: 600px;
    }

    .header[b-w4jg5bor5f] {
        & h1 {
            font-size: larger;
        }
    }
}

/* Mobile */
@media (max-width: 600px) {
    .text-wrapper[b-w4jg5bor5f] {
        &.large {
            height: 60%;
        }
    }

    .wrapper[b-w4jg5bor5f] {
        width: 90%;
    }

    .header[b-w4jg5bor5f] {
        & h1 {
            font-size: larger;
        }
    }
}
