/* LSM Admin Dashboard Aesthetics */
.lsm-dashboard {
    background-color: #f0f2f5;
    padding: 20px;
    border-radius: 12px;
}

.lsm-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.lsm-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #2271b1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lsm-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.lsm-stat-card h3 {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #646970;
}

.lsm-stat-card p {
    margin: 10px 0 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1d2327;
}

.lsm-recent-activity {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.lsm-recent-activity h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1d2327;
}

.widefat.fixed.striped {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.widefat thead th {
    background: #f8f9fa;
    padding: 15px;
    font-weight: 600;
}

.widefat tbody td {
    padding: 15px;
}
