/* users.css*/
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: #2c3e50;
    color: white;
    padding: 20px;
    position: fixed;
    height: 100%;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
}

.user-profile .avatar {
    font-size: 60px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.nav-link {
    color: #bdc3c7;
    margin-bottom: 5px;
    border-radius: 5px;
}

.nav-link:hover, .nav-link.active {
    background: #34495e;
    color: white;
}

.main-content {
    margin-left: 280px;
    padding: 30px;
    width: calc(100% - 280px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.stat-icon {
    font-size: 30px;
    margin-right: 15px;
}

.quick-actions {
    margin-bottom: 30px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.action-card {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}