.header {
    background-color: #fff;
    padding: 1rem 1.5rem;

}

.header-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: .8rem;
}


.header .page-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header  .notification-btn {
    position: relative;
    background: #f5f5f7;
    border: none;
    padding: .6rem 1rem;
    border-radius: .6rem;
    cursor: pointer;
    transition: background 0.2s;
}

.header  .notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background-color: #FF3B30;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}


.header .user-info .user-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}

.header  .user-info .user-name {
    font-size: .9rem;
    font-weight: 600;
    color: #000;
}

.header  .user-info .user-role {
    font-size: 0.75rem;
    color: #6e6e73;
}

