/* General */
* {
    font-family: 'gg sans', sans-serif;
    font-size: 16px;
    color: #FEFEFE;
}

body,
html {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;

    height: 100%;
    width: 100%;
    margin: 0;

    background-color: #323239FF;
}

input {
    border: 0;
    appearance: none;
    background-color: transparent;
}

.hidden-element {
    opacity: 0;
    transform: translateY(20px);

    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.visible-element {
    opacity: 1;
    transform: translateY(0);
}

/* Page */
.page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 32px;
    background-color: #2C2C32FF;
}

.header-image {
    border-radius: 8px;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 12px;
}

/* Main */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    margin-bottom: 16px;
}

/* Message Box */
.message-box {
    margin-bottom: 4px;
    margin-top: 4px;
}

.token-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0px 12px 0px;
    border-radius: 8px;

    height: 2.2em;
    min-width: 40vw;

    background-color: #393A41;
}

.hoverable-container:hover {
    box-shadow: inset 0 0 1px #5B5962FF;
}

.hoverable-container:hover::after {
    border: 1px solid transparent;
    box-shadow: inset 0 0 1px #5B5962FF;
}

.token-input-container-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.token-input-symbol {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
    margin: 0px 8px 0px 8px;
    padding: 10px;

    transition: background-color 0.3s ease;
}

.token-input-symbol:hover {
    background-color: #5B5962FF;
    cursor: pointer;
}

#token-input::placeholder {
    color: #6C6B75;
}

#token-input:focus {
    outline: none;
}

/* Separator */
hr {
    width: 30%;
    border-color: #DB4A43;
}

/* Profile */
.profile {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;

    padding: 12px 12px 12px 12px;

    border-style: solid;
    border-radius: 8px;
    border-left-width: 4px;
    border-color: transparent;
    border-left-color: hsla(211, calc(56.3%), 56.1%, 1);

    height: fit-content;

    background-color: #393A41;
}

.profile-header {
    max-width: 60%;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.profile-tags {
    display: grid;
    grid-template-columns: auto;
}

.profile-tags div {
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
}

#author-senpai {
    padding-bottom: 10px;
}

select {
    background-color: transparent;
    padding: 3px;
    margin-top: 2px;
    border-color: #6A6673;
}

select option {
    background-color: #2C2C32FF;
}