/* Fideltech Acente Pro - Sadeleştirilmiş CSS (Hata Vermez) */
@import "tailwindcss";

:root {
    --primary-blue: #1e40af;
    --success: #10b981;
    --danger: #ef4444;
}

/* Tablolar için düzenleme */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.custom-table th {
    background-color: #f8fafc;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.custom-table td {
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

/* Durum Rozetleri */
.badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-danger { background: #fee2e2; color: #991b1b; }

/* Dashboard Kartları */
.stat-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}