/*
 * Header styling
 */
 #header {
    position: relative;
    display: flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    color: var(--header-text-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 1;
}

#header img {
    width: 50px;
    height: 50px;
}

#header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

#exit-button {
    margin: 5px;
    padding: 5px;
    border-radius: 5px;  
}

#exit-button img {
    width: 30px;
    height: 30px;
}

#exit-button:hover {
    background-color: #aaa;
}



@media (max-width: 767px) {
    #app-title {
        font-size: clamp(12px,4vw,24px);
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 1;
        text-overflow: ellipsis;
        overflow: hidden;
}
}

@media (min-width: 768px) {
    #app-title {
            font-size: 36px;
    }
}

