header {
    position: sticky;
    top: -2px;
    left: 0;
    right: 0;
    z-index: 1049;
    background: var(--system-color, #1F3E74);
    padding: 1rem;
}

header .header-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-top-logo {
    width: auto;
    height: 25px;
    object-fit: cover;
}

header .header-top-buttons {
    display: flex;
    justify-content: end;
    gap: 1.25rem;
}

header .header-top-buttons a {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: .5rem;
    text-align: center;
}

.header-section-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: start;
}

.header-section-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.header-section-content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.header-section-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-section-buttons a {
    background: #F2BB2B;
    border: 1px solid #F2BB2B;
    padding: .75rem;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: .5rem;
    text-align: center;
}

.top-bar-section {
    position: fixed;
    top: -150%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--system-color, #1F3E74);
    padding: 1rem;
    height: calc(100vh - 5rem);
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.top-bar-section.open {
    top: 0;
}

.top-bar-section .top-bar-top-section {
    height: calc(78vh - 6rem);
}

.top-bar-section .top-bar-top-section .top-bar-top-section-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.top-bar-section .top-bar-top-section .top-bar-user-avatar-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    overflow: hidden;
    width: 100%;
}

.top-bar-section .top-bar-top-section .top-bar-user-information {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    overflow: hidden;
}

.top-bar-section .top-bar-top-section .top-bar-user-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.top-bar-section .top-bar-top-section .top-bar-user-email {
    font-size: .95rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.top-bar-section .top-bar-top-section .top-bar-user-avatar {
    height: 5rem;
    width: 5rem;
    min-width: 5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #FFF;
    background-color: #F2BB2B;
    border: 3px solid #FFF;
    overflow: hidden;
}

.top-bar-section .top-bar-top-section .top-bar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-bar-section .top-bar-user-info {
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 1.5rem;
}

.top-bar-section .top-bar-user-info .top-bar-user-balance {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: .5rem 0 0 0;
}

.top-bar-section .top-bar-user-info .top-bar-small-text {
    font-size: .95rem;
    font-weight: 500;
    padding: 0;
}

.top-bar-section .top-bar-user-info .top-bar-clipboard-icon {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
}

.top-bar-section .top-bar-user-menu ul {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 45vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.top-bar-section .top-bar-user-menu ul li a {
    text-decoration: none;
    color: #FFF;
    font-size: 1rem;
    font-weight: 500;
}

.top-bar-section .top-bar-bottom-section {
    height: calc(15vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-section .top-bar-bottom-section button {
    background: #F2BB2B;
    border: 1px solid #F2BB2B;
    padding: .75rem;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: .5rem;
    text-align: center;
}
