/* Modern Users Page Styling */
.users-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
    color: #ddd;
    min-height: 80vh;
}

.users-container h1 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: none;
    position: relative;
}

.users-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #00bcd4);
    border-radius: 2px;
}

/* User Card */
.user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
    padding: 18px 25px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid rgba(136, 136, 136, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.user-row:hover {
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Avatar */
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fc3f7, #00bcd4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
    transition: transform 0.3s ease;
}

.user-row:hover .user-avatar {
    transform: scale(1.05);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* User Name */
.user-name {
    font-size: 1.15em;
    font-weight: 500;
    color: #fff;
}

.user-name span {
    font-size: 0.8em;
    color: #666;
    margin-left: 10px;
}

/* Profile Button */
.btn-profile {
    background: linear-gradient(135deg, #4fc3f7 0%, #00bcd4 100%);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

/* Empty State */
.users-container>p {
    text-align: center;
    color: #888;
    padding: 40px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 14px;
}

/* Footer */
.users-container+.footer_asd {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 600px) {
    .users-container {
        padding: 40px 15px 30px 15px;
    }

    .user-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .user-info {
        flex-direction: column;
        gap: 10px;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
    }

    .btn-profile {
        width: 100%;
        text-align: center;
    }
}