/* ============================================================
   OVERVIEW PANEL STYLES — J2ST.ICU VOID
   ============================================================ */

.overview-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.stat-icon-box i img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    opacity: 0.7;
}

.stat-value {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-trend {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    display: inline-flex;
    width: fit-content;
}

.trend-up { background: rgba(0, 230, 118, 0.1); color: var(--success); }
.trend-down { background: rgba(255, 77, 77, 0.1); color: var(--danger); }

/* Activity & Quick Actions Mix */
.content-grid-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
}

.activity-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.panel-title {
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.5px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transition: var(--transition-snappy);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(6px);
}

.activity-dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
}

.activity-item:hover .activity-dot {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

.activity-info p {
    font-size: 14px;
    font-weight: 700;
}

.activity-info span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-snappy);
    text-align: center;
}

.action-btn:hover {
    background: var(--accent-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.action-btn i img {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.5;
}

.action-btn:hover i img {
    opacity: 1;
    transform: scale(1.1);
}

.action-btn span {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-secondary);
}

@media (max-width: 1400px) {
    .stat-row { grid-template-columns: 1fr 1fr; }
    .content-grid-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stat-row { grid-template-columns: 1fr; }
}
