.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--green-950);
    padding: 12px 29px;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    gap: 18px;
    height: 72px;
    justify-content: space-between;
}

.header-links {
    display: flex;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    gap: 4px;
    height: 72px;
}

.header-actions {
    display: flex;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    gap: 18px;
    height: 72px;
}

.header-logo {
    height: 30px;
    width: auto;
}

.header-link {
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    transition: background 0.2s ease;
}

.header-link:not(.bg-green-700):hover {
    background: var(--green-800);
}

.header-link:hover {
    color: white;
    text-decoration: none;
}

.header-link-icon {
    height: 17px;
    width: auto;
}

.header-link-badge {
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

.header-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header-logout-icon {
    height: 17px;
    width: auto;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    height: 48px;
    padding-left: 7px;
    padding-right: 16px;
    border-radius: 30px;
    transition: background 0.2s ease;
}

.header-user:hover{
    text-decoration: none;
}

.header-user:not(.bg-green-700):hover {
    background: var(--green-800);
}

.header-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.header-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.organization-name {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-user-role {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

