.users-container {
    min-height: 100vh;
    background: var(--background-color);
    padding: 0;
}

/* Bande supérieure harmonisée */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-subtitle {
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    color: white;
    font-weight: 400;
}

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

.banner-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    font-weight: 500;
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-actions {
        width: 100%;
        justify-content: center;
    }

    .banner-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}