/* FixNova - Temel CSS (Boşluklar Kaldırıldı) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
}

.panel-wrapper {
    display: flex;
    min-height: 100vh;
}

/* İÇERİK ALANI - SAĞ SOL BOŞLUK YOK */
.container-fluid {
    flex: 1;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
    background: #f8fafc;
}

.content-inner {
    padding: 0 20px;
}

/* KARTLAR */
.card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}
.card-header {
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    font-size: 0.85rem;
}
.card-body {
    padding: 16px;
}

/* TABLOLAR */
.table-custom {
    width: 100%;
    border-collapse: collapse;
}
.table-custom th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 1px solid #e9ecef;
}
.table-custom td {
    padding: 10px 16px;
    font-size: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

/* BUTONLAR */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary {
    background: #3b82f6;
    color: white;
}
.btn-primary:hover {
    background: #2563eb;
}
.btn-outline-primary {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #3b82f6;
}
.btn-outline-primary:hover {
    background: #3b82f6;
    color: white;
}
.btn-sm {
    padding: 4px 10px;
    font-size: 0.7rem;
}
.btn-light {
    background: #f1f5f9;
    color: #1e293b;
}
.btn-light:hover {
    background: #e2e8f0;
}
.btn-success {
    background: #10b981;
    color: white;
}
.btn-success:hover {
    background: #059669;
}
.btn-warning {
    background: #f59e0b;
    color: white;
}
.btn-warning:hover {
    background: #d97706;
}
.btn-danger {
    background: #ef4444;
    color: white;
}
.btn-danger:hover {
    background: #dc2626;
}

/* BADGE */
.badge-custom {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.badge-active, .badge-yeterli { background: #ecfdf5; color: #10b981; }
.badge-passive, .badge-yok { background: #fee2e2; color: #ef4444; }
.badge-kritik { background: #fffbeb; color: #f59e0b; }
.badge-acik { background: #fee2e2; color: #ef4444; }
.badge-islemde { background: #fffbeb; color: #f59e0b; }
.badge-tamamlandi { background: #ecfdf5; color: #10b981; }

/* İSTATİSTİK KARTLARI */
.stat-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    transition: 0.2s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 8px;
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 4px;
}
.bg-primary-light { background: #eef2ff; color: #3b82f6; }
.bg-warning-light { background: #fffbeb; color: #f59e0b; }
.bg-success-light { background: #ecfdf5; color: #10b981; }
.bg-info-light { background: #eff6ff; color: #3b82f6; }

/* HOŞGELDİN KARTI */
.welcome-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
}
.welcome-card h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* HIZLI ERİŞİM */
.quick-action {
    background: white;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    border: 1px solid #e9ecef;
    transition: 0.2s;
    display: block;
}
.quick-action:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    color: #3b82f6;
}
.quick-action i {
    font-size: 1.2rem;
    margin-bottom: 6px;
    display: block;
}
.quick-action span {
    font-size: 0.7rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-inner {
        padding: 0 12px;
    }
    .table-custom th, .table-custom td {
        padding: 8px 12px;
    }
    .btn-sm {
        padding: 4px 8px;
    }
}