
html {
    color-scheme: light dark;
    overflow-x: hidden;
}

body {
    width: 50em;
    padding-left: 25%;
    padding-right: 25%;
    background-color: #1C1C2B;
    color: #CDD6F4;
    margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif; }

.topper {
    width: 100%;
    color: grey;
}
.topperl {
    text-align: left
}
.topperr {
    text-align: right
}

footer-old {
    text-align: center;
    padding: 15px;
    background-color: #1e1e2e;
    color: #6c7293;
    font-size: 14px;
}

/* --- Body Elements --- */
input {
    color: #F9E2AF;
    width: 10em;
    height: 2em;
    display: block;
    margin: 0 auto;
    font-size: 1em;
    background-color: #313244;
    border-color: #454759;
    border-style: solid;
    border-radius: 8px;
}
.main-content {
    color: #CDD6F4;
    background-color: #1E1E2E3F;
    border-radius: 5px;
    border-color: #31324480;
    border-style: solid;
    margin: 5 auto;
    padding: 5px;
}

/* Request Type Title */
.valid-request {
    color: #A6E3A1;
}
.invalid-request {
    color: #F38BA8;
}

/* --- Liquid Glass related --- */
.glass {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 0 100px rgba(255, 255, 255, 0.1),
              inset 0 0 200px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
    filter: blur(20px);
}
.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at center, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    animation: glass-animation 5s linear infinite;
    filter: blur(30px);
}

.glass-white {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
              inset 0 0 100px rgba(255, 255, 255, 0.1),
              inset 0 0 200px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}
.glass-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    z-index: -1;
    filter: blur(20px);
}
.glass-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at center, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    z-index: -1;
    animation: glass-animation 5s linear infinite;
    filter: blur(30px);
}

@keyframes glass-animation {
    0% { transform: rotate(135deg); }
    100% { transform: rotate(135deg); }
}
