header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    padding: 16px 100px;
    background: linear-gradient(to left, rgba(125, 211, 252, 1), rgba(129, 140, 248, 1));
}

header .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 16px;
    height: fit-content;
}

.btn-logout {
    background: rgba(0, 0, 0, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-logout:hover {
    background: rgba(0, 0, 0, 0.25);
}