.account-section { 
    background:#f9f9f9; 
    border-radius:10px; 
    padding:20px; 
    margin-bottom:30px; 
}

/* Stats grid */
.stats-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap:20px;
    margin-top:15px;
}
.stat-box {
    background:#fff;
    padding:20px;
    border-radius:8px;
    text-align:center;
    font-size:18px;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.stat-box strong { display:block; font-size:28px; margin-bottom:8px; }
.stat-box.completed { border-left:5px solid green; }
.stat-box.terminated { border-left:5px solid red; }
.stat-box.total { border-left:5px solid #0073aa; }

/* Options grid */
.options {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap:15px;
}
.account-btn {
    display:block;
    padding:15px;
    background:#0073aa;
    color:#fff !important;
    text-align:center;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    transition: background 0.2s;
}
.account-btn:hover { background:#005f8d; }
.account-btn.logout { background:#d9534f; }
.account-btn.logout:hover { background:#b52b27; }

/* Mobile friendly */
@media(max-width:768px){
    .stats-grid, .options { grid-template-columns: 1fr; }
}
