@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --background-color: #ffffff;
    --background-color-2: #2596be;
    --btn-color: #000000;
    --text-color: #80162d;
    --anchors-selected-color: #666666;
    --green-color: #176B4D;
    --gold-color: #D4AF37;
    --text-font-1: 'Outfit', sans-serif;
}

.admins-main-header h3 {
    font-size: 1.5rem;
    font-family: var(--text-font-1);
    text-transform: uppercase;
    user-select: none;
}

.admins-main {
    background: var(--background-color-2);
    position: relative;
}

.admin-name {
    background: var(--text-color);
}

.admin-dashboard-add {
    display: flex;
    justify-content: center;
    align-items: center;
}

.admins-main-painel {
    position: absolute;
    width: 100%;;
    height: 100%;
    z-index: 10;
    background: var(--text-color);
    padding: 0.5rem;
    display: flex;
    left: -200%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

.admins-main-painel-header h3 {
    font-size: 1.5rem;
    width: 100%;
    font-family: var(--text-font-1);
    text-transform: uppercase;
    user-select: none;
    text-align: center;
}

.admins-main-painel.opened {
    left: 0;
}

.admins-main-painel-goals, .admins-main-painel-spreadsheets {
    width: 100%;
    height: 100%;
    position: absolute;
    left: -200%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
    background: var(--background-color-2);
}

.admins-main-painel-goals.opened, .admins-main-painel-spreadsheets.opened {
    left: 0;
}

.admins-main-painel-spreadsheets-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 1.5rem;
    font-family: var(--text-font-1);
}

.admins-main-painel-spreadsheets-header button {
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;

    padding: 0.55rem 1.2rem;
    min-width: 6rem;

    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;
    transition: 
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.admins-main-painel-spreadsheets-header button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.admins-main-painel-spreadsheets-header button:active {
    transform: translateY(0);
}

.admins-main-painel-spreadsheets-header button.active {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--background-color-2);
}