:root {
    --main-font: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
    --brand-color: #2563EB;
    --font-size-normal: 16px;
    --font-size-small: 14px;
    --font-weight-normal: 200;
    --font-weight-bold: 400;
}

*, *::before, *::after {
    box-sizing: border-box;
    outline: none;
}

*:disabled {
    cursor: not-allowed;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-normal);
    font-family: var(--main-font), serif;
    font-weight: var(--font-weight-normal);
    color: #202124;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#passwordSection {
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    max-width: 300px;
}

label {
    width: 100%;
    display: block;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 15px;
}

input {
    width: 100%;
    font-size: var(--font-size-normal);
    font-family: var(--main-font), serif;
    font-weight: var(--font-weight-normal);
    text-align: center;
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 12px;
    transition: .2s;
}

input:disabled {
    background-color: #f1f3f4;
}

button {
    width: 100%;
    font-size: var(--font-size-normal);
    font-family: var(--main-font), serif;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background-color: var(--brand-color);
    border: none;
    border-radius: 8px;
    outline: none;
    padding: 12px;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background-color: color-mix(in srgb, var(--brand-color), #000000 10%);
}

button:disabled {
    background-color: color-mix(in srgb, var(--brand-color), #000000 20%);
}

.select-box {
    width: fit-content;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="currentColor"><path d="M480-158 334-304l20-20 126 126 126-126 20 20-146 146ZM354-636l-20-20 146-146 146 146-20 20-126-126-126 126Z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px;
    background-color: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: .2s;
}

.title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;

    img {
        width: 100%;
        max-width: 40px;
    }

    h2 {
        font-size: 26px;
        font-weight: var(--font-weight-bold);
        text-transform: uppercase;
        margin: 0 0 3px 0;
    }
}

select {
    font-family: var(--main-font), serif;
    font-weight: var(--font-weight-normal);
    padding: 12px 26px 12px 16px;
    width: 100%;
    max-width: 360px;
    font-size: var(--font-size-normal);
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    cursor: pointer;
}

select:focus {
    border: none;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

select:focus-visible {
    outline: none !important;
}

select::-moz-focus-inner {
    border: 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

th, td {
    border-bottom: 1px solid #e8eaed;
    padding: 12px 16px;
    text-align: left;
    font-size: var(--font-size-normal);
}

th {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: white;
    background: var(--brand-color);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f8f9fa;
}

.loading {
    color: #5f6368;
    font-style: italic;
    margin-bottom: 15px;
}

.info {
    font-size: var(--font-size-small);
    font-style: italic;
    margin-top: 20px;
}

.contact-link {
    font-weight: var(--font-weight-bold);
    color: #202124;
    text-decoration: none;
    transition: .2s;
}

.contact-link:hover {
    color: var(--brand-color);
}

@media (max-width: 768px) {
    table {
        th:nth-child(2), td:nth-child(2), th:nth-child(4), td:nth-child(4) {
            display: none;
        }
    }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-10px);
    }
    40%, 80% {
        transform: translateX(10px);
    }
}