/* * ParaX Command Center - Statistics Module Styling
 * UI_STATE: Premium Dark Dashboard
 */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(30, 30, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffcc00; /* Gold Accent */
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #ffcc00;
}

.stat-card h3 {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .value {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-card .trend {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
}

.trend.up { background: rgba(0, 255, 0, 0.1); color: #00ff00; }
.trend.down { background: rgba(255, 0, 0, 0.1); color: #ff3333; }

/* Dashboard İlerleme Çubuğu */
.progress-container {
    width: 100%;
    background: #2a2a2e;
    height: 8px;
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ffae00);
    width: 0%;
    transition: width 1s ease-in-out;
}