html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'MapleMono', 'SUSE Mono', "SF Mono", "Cascadia Code", Consolas, monospace, 'Noto Color Emoji';
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a0510 0%, #320820 40%, #4a1632 70%, #521f3a 100%);
    background-attachment: fixed;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    overflow-y: auto;
    margin: 0;
}

.scrollable-container {
    max-height: 500px;
    overflow-y: auto;
}

.divround {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.40);
    height: auto;
    width: 90vw;
    max-width: 510px;
    margin: auto;
    padding: 2.375vh;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    overflow-y: auto;
}

.circular {
    border-radius: 125px;
    -webkit-border-radius: 125px;
    -moz-border-radius: 125px;
    background-size: cover;
    display: inline-block;
    width: 250px;
    height: 250px;
}

.notif {
    border-radius: 7px;
    padding: 20px;
    height: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notif.warning {
    background: rgba(255, 249, 178, .55);
    border: 1px solid rgba(255, 249, 178, .6);
    color: #5c4d00;
}

.notif.error {
    background: rgba(255, 175, 180, .55);
    border: 1px solid rgba(255, 175, 180, .6);
    color: #6b1015;
}

.notif.success {
    background: rgba(166, 239, 184, .55);
    border: 1px solid rgba(166, 239, 184, .6);
    color: #0f4a23;
}

.notif.info {
    background: rgba(120, 192, 222, .55);
    border: 1px solid rgba(120, 192, 222, .6);
    color: #0b3550;
}

.form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.progress {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 350px;
}

.progress-bar {
    box-shadow: 0 10px 18px -17px rgb(219, 39, 119);
    border-radius: 100px;
    background-color: rgb(236, 72, 153);
    width: 0;
    transition: width 0.3s ease-in-out;
    height: 10px;
}

.progress-bar.error {
    box-shadow: 0 10px 18px -17px rgb(223, 43, 43);
    background-color: rgb(223, 43, 43);
}

.progress-bar.success {
    box-shadow: 0 10px 18px -17px rgb(45, 245, 122);
    background-color: rgb(45, 245, 122);
}

progress[value]::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

progress[value]::-webkit-progress-value {
    border-radius: 100px;
    background: rgb(236, 72, 153);
}

progress[value]::-moz-progress-bar {
    border-radius: 100px;
    background: rgb(236, 72, 153);
}

progress[value]::-ms-fill {
    border-radius: 100px;
    background: rgb(236, 72, 153);
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.grid-item {
    text-align: center;
    padding: 19px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 100%;
    color: white;
}

.grid-item-auto {
    text-align: center;
    padding: 19px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 30%;
    max-width: 100%;
    color: white;
}

.bold {
    font-size: 19px;
    font-weight: 700;
}

.center {
    text-align: center;
    justify-content: center;
}

.hidden {
    display: none;
}

.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.no-drag {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.version-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

img {
    border-radius: 0.4em;
    max-width: 50%;
    max-height: 50%;
    width: auto;
    height: auto;
}

@media (prefers-color-scheme: light) {
    .divround,
    .form,
    .version-container {
        background: rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .grid-item,
    .grid-item-auto {
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
}

@media only screen and (max-width: 600px) {
    .divround {
        width: 85vw !important;
        height: 92vh !important;
    }

    .scrollable-container {
        max-height: 609px !important;
    }
}