

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0 0.5rem 0;
    background-color: var(--neon-yellow)}

.header__title {
    text-align: left;
    color: black}


.welcome-text {
    text-align: left;
    color: var(--color-light-gray);
    font-style: italic}

.header__nav-links {
    display: flex;
    gap: 3rem;
    align-items: center}

@media (max-width: 768px) {
    .header__nav-links {
        gap: 0.5rem;
        width: 100%;
        justify-content: space-between}
}

.header__nav-links a {
    position: relative;
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-thickness: 1px}

.header__nav-links a:visited {
    color: var(--color-black)}

.header__nav-link .new-badge {
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    rotate: 12deg;
    display: inline-block;
    border: 1px solid black;
    background-color: var(--neon-yellow);
    color: var(--color-black);
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.15rem 0.4rem;
    border-radius: 1rem;
    text-transform: uppercase;
    
    z-index: 10}

.header__nav-links a:hover {
    color: var(--color-dark-gray);
    text-decoration: none;
    border-radius: var(--radius)}


.header__user-identity {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center}

.header__identity-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-thickness: 1px}

.header__identity-link:visited {
    color: var(--color-black)}

.header__identity-link:hover {
    color: var(--color-dark-gray);
    text-decoration: none;
    border-radius: var(--radius)}

.header__identity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0}

.header__identity-icon svg {
    width: 100%;
    height: 100%;
    color: currentColor}

.header__identity-text {
    font-size: 0.75rem}


#adminLink {
    background: black;
    color: var(--neon-yellow) !important;
    border-radius: var(--radius);
    font-weight: bold}

#adminLink:hover {
    background: var(--color-dark-gray) !important;
    color: var(--neon-yellow) !important}


@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem}
}

