:root {
    --bg: #f4f6f8;
    --light-black: #444444;
    --point: #7a809a;
    --white-hover: #e0e2e6;
    --pink: #f53d6b;
    --pink-dark: #d92d59;
    --pink-light: #ffe6f0;
    --table-color: #f2f8ff;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, var(--bg) 0%, #ffffff 100%);
    font-size: 16px;
    margin: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100dvh;
    overflow: hidden;
}


@font-face {
    font-family: 'DS-Digital';
    src: url('/assets/fonts/ds_digital/DS-DIGI.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo {
    width: 100%;
}

.icon-small {
    width: 16px;
    height: 16px;
}

.icon {
    width: 24px;
    height: 24px;
}

.icon-big {
    width: 40px;
    height: 40px;
}

.icon-very-big {
    width: 150px;
    height: 150px;
}

main {
    grid-column: 2;
    display: inline-flex;
    flex-direction: column;
    height: 100dvh;
    overflow-y: auto;
}

#app {
    flex: 1 1 auto;
}

.btn-pink {
    background-color: var(--pink);
    padding: 13px;
    border-radius: 15px;
    color: white;
    border: none;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-pink:hover {
    background-color: var(--pink-dark);
    color: white;
}

.btn-white {
    background-color: white;
    padding: 13px;
    border-radius: 15px;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-white:hover {
    background-color: black;
    color: white;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    position: relative;
    width: 70%;
    max-width: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25),
        0 -3px 6px rgba(0, 0, 0, 0.15);
}

.card h1 {
    justify-content: center;
    display: flex;
    font-size: 36px;
}

.card p {
    justify-content: center;
    display: flex;
}

.heading {
    font-size: 24px;
}

.subheading {
    font-size: 20px;
}

.text {
    font-size: 16px !important;
}

.pink-text {
    color: var(--pink);
}

.bold-text {
    font-size: 16px !important;
    font-weight: 590;
}

.card-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: white;
    margin: 20px auto;
    border-radius: 15px;
    padding: 10px 20px;
    width: 70%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25),
        0 -3px 6px rgba(0, 0, 0, 0.15);
}

.inline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-bottom {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow: auto;
}

.loader {
    width: 40px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side, var(--pink) 90%, #0000);
    background:
        var(--_g) 0% 50%,
        var(--_g) 50% 50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1s infinite linear;
}

@keyframes l7 {
    33% {
        background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%
    }

    50% {
        background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%
    }

    66% {
        background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%
    }
}

.spacer {
    min-height: 30px;
}

.page-not-found {
    font-size: 50px;
}