/* assets/dashboard.css */

/* --- İSTATİSTİK KARTLARI (WIDGETS) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-card:hover { transform: translateY(-5px); }

.stat-info h3 { font-size: 0.9rem; color: #64748b; margin: 0 0 10px 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-info .value { font-size: 1.8rem; font-weight: 800; color: #1e293b; }

.stat-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}

/* Kart Renkleri */
.card-kasa { border-bottom: 4px solid #10b981; }
.card-kasa .stat-icon { background: #d1fae5; color: #059669; }
.card-kasa .value { color: #059669; }

.card-alacak { border-bottom: 4px solid #3b82f6; }
.card-alacak .stat-icon { background: #dbeafe; color: #2563eb; }
.card-alacak .value { color: #2563eb; }

.card-borc { border-bottom: 4px solid #ef4444; }
.card-borc .stat-icon { background: #fee2e2; color: #dc2626; }
.card-borc .value { color: #dc2626; }

.card-stok { border-bottom: 4px solid #f59e0b; }
.card-stok .stat-icon { background: #fef3c7; color: #d97706; }

/* --- KRİTİK STOK TABLOSU --- */
.dashboard-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem; font-weight: 700; color: #334155;
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    display: flex; justify-content: space-between; align-items: center;
}

.mini-table { width: 100%; border-collapse: collapse; }
.mini-table th { text-align: left; color: #64748b; font-size: 0.8rem; padding: 10px; background: #f8fafc; }
.mini-table td { padding: 12px 10px; border-bottom: 1px solid #f1f5f9; color: #334155; font-size: 0.9rem; font-weight: 500; }
.mini-table tr:last-child td { border-bottom: none; }

.stok-az { color: #dc2626; font-weight: 700; background: #fef2f2; padding: 4px 8px; border-radius: 6px; font-size: 0.8rem; }
.hareket-turu { font-size: 0.8rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.tur-giris { background: #dcfce7; color: #166534; }
.tur-cikis { background: #fee2e2; color: #991b1b; }