/* ===========================================
   ORDERLY MODERN RAPORLAMA SİSTEMİ
   Marka Rengi: #FE492C
   ApexCharts Entegrasyonlu - Light Theme
   Dual prefix support: reports-* ve raporlar-*
=========================================== */

:root {
    --report-primary: #FE492C;
    --report-primary-light: #FF6B4A;
    --report-primary-dark: #E03A1F;
    --report-success: #27ae60;
    --report-warning: #f39c12;
    --report-danger: #e74c3c;
    --report-info: #3498db;
    --report-purple: #9b59b6;
    --report-bg: #f5f7fa;
    --report-card-bg: #ffffff;
    --report-card-border: rgba(0, 0, 0, 0.08);
    --report-text: #2c3e50;
    --report-text-muted: #7f8c8d;
    --report-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --report-radius: 16px;
    --report-radius-sm: 10px;
}

/* Main Container */
.reports-container,
.raporlar-main-container {
    min-height: 100vh;
    background: var(--report-bg);
    padding: 24px;
}

/* Header */
.reports-header {
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    padding: 28px 32px;
    margin-bottom: 24px;
    border-radius: var(--report-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(254, 73, 44, 0.25);
}

.reports-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.reports-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reports-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reports-title i {
    font-size: 32px;
}

.reports-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 6px 0 0;
    font-weight: 500;
}

/* Breadcrumb */
.reports-breadcrumb,
.raporlar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.reports-breadcrumb a,
.raporlar-breadcrumb-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reports-breadcrumb a:hover,
.raporlar-breadcrumb-link:hover {
    opacity: 0.8;
}

.raporlar-breadcrumb {
    margin-bottom: 24px;
    color: var(--report-text-muted);
}

.raporlar-breadcrumb-link {
    color: var(--report-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.raporlar-breadcrumb i.la-angle-right {
    font-size: 12px;
    color: var(--report-text-muted);
}

/* Page Header (raporlar style) */
.raporlar-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.raporlar-page-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.raporlar-page-title > i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(254, 73, 44, 0.3);
}

.raporlar-page-title h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--report-text);
}

.raporlar-page-title p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--report-text-muted);
}

.raporlar-header-actions {
    display: flex;
    gap: 10px;
}

.raporlar-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--report-radius-sm);
    border: 1px solid var(--report-card-border);
    background: var(--report-card-bg);
    color: var(--report-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.raporlar-btn-icon:hover {
    background: var(--report-primary);
    color: white;
    border-color: var(--report-primary);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.3);
}

/* Sub Navigation / Tabs */
.reports-subnav,
.raporlar-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.reports-subnav::-webkit-scrollbar,
.raporlar-tabs::-webkit-scrollbar {
    display: none;
}

.reports-subnav-item,
.raporlar-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--report-card-bg);
    border: 1px solid var(--report-card-border);
    border-radius: var(--report-radius-sm);
    color: var(--report-text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.reports-subnav-item:hover,
.raporlar-tab:hover {
    border-color: var(--report-primary);
    color: var(--report-primary);
}

.reports-subnav-item.active,
.raporlar-tab.active {
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(254, 73, 44, 0.3);
}

.reports-subnav-item i,
.raporlar-tab i {
    font-size: 18px;
}

/* Filters */
.reports-filters,
.raporlar-filters {
    background: var(--report-card-bg);
    border-radius: var(--report-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--report-card-border);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: var(--report-shadow);
}

.reports-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reports-filter-label,
.raporlar-date-input label {
    font-size: 12px;
    font-weight: 600;
    color: var(--report-text-muted);
}

.reports-filter-input,
.raporlar-date-input input {
    padding: 10px 14px;
    border: 1px solid var(--report-card-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--report-text);
    background: #f8f9fa;
    transition: all 0.3s ease;
    min-width: 140px;
}

.reports-filter-input:focus,
.raporlar-date-input input:focus {
    outline: none;
    border-color: var(--report-primary);
    box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
}

.reports-quick-filters,
.raporlar-quick-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.reports-quick-btn,
.raporlar-quick-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid var(--report-card-border);
    border-radius: 8px;
    color: var(--report-text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reports-quick-btn:hover,
.reports-quick-btn.active,
.raporlar-quick-filter:hover,
.raporlar-quick-filter.active {
    background: var(--report-primary);
    border-color: var(--report-primary);
    color: white;
}

.reports-filter-btn,
.raporlar-btn-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reports-filter-btn:hover,
.raporlar-btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 73, 44, 0.35);
}

.raporlar-date-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-left: auto;
    flex-wrap: wrap;
}

.raporlar-date-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* KPI Grid */
.reports-kpi-grid,
.raporlar-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.reports-kpi-card,
.raporlar-kpi-card {
    background: var(--report-card-bg);
    border-radius: var(--report-radius);
    padding: 24px;
    border: 1px solid var(--report-card-border);
    box-shadow: var(--report-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reports-kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
}

.reports-kpi-card.kpi-success::before {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.reports-kpi-card.kpi-warning::before {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.reports-kpi-card.kpi-info::before {
    background: linear-gradient(135deg, #3498db, #5dade2);
}

.reports-kpi-card.kpi-purple::before {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.reports-kpi-card:hover,
.raporlar-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* raporlar style KPI */
.raporlar-kpi-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reports-kpi-icon,
.raporlar-kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(254, 73, 44, 0.12);
    color: var(--report-primary);
    flex-shrink: 0;
}

.reports-kpi-card.kpi-success .reports-kpi-icon {
    background: rgba(39, 174, 96, 0.12);
    color: var(--report-success);
}

.reports-kpi-card.kpi-warning .reports-kpi-icon {
    background: rgba(243, 156, 18, 0.12);
    color: var(--report-warning);
}

.reports-kpi-card.kpi-info .reports-kpi-icon {
    background: rgba(52, 152, 219, 0.12);
    color: var(--report-info);
}

.reports-kpi-card.kpi-purple .reports-kpi-icon {
    background: rgba(155, 89, 182, 0.12);
    color: var(--report-purple);
}

.raporlar-kpi-content {
    display: flex;
    flex-direction: column;
}

.reports-kpi-label,
.raporlar-kpi-label {
    font-size: 13px;
    color: var(--report-text-muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.reports-kpi-value,
.raporlar-kpi-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--report-text);
    line-height: 1.2;
}

.reports-kpi-trend,
.raporlar-kpi-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.reports-kpi-trend.positive,
.raporlar-kpi-trend.positive {
    color: var(--report-success);
}

.reports-kpi-trend.negative,
.raporlar-kpi-trend.negative {
    color: var(--report-danger);
}

.reports-kpi-trend span {
    color: var(--report-text-muted);
    font-weight: 400;
}

/* Chart Grid */
.reports-chart-grid,
.raporlar-charts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.reports-chart-card,
.raporlar-chart-card {
    background: var(--report-card-bg);
    border-radius: var(--report-radius);
    border: 1px solid var(--report-card-border);
    box-shadow: var(--report-shadow);
    overflow: hidden;
}

.reports-chart-card.reports-chart-full,
.raporlar-chart-card.full-width {
    grid-column: span 2;
}

.reports-chart-header,
.raporlar-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--report-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fafbfc, #fff);
}

.reports-chart-title,
.raporlar-card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--report-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reports-chart-title i,
.raporlar-card-header h3 i {
    color: var(--report-primary);
    font-size: 20px;
}

.reports-chart-actions,
.raporlar-card-actions {
    display: flex;
    gap: 8px;
}

.reports-chart-body,
.raporlar-card-body {
    padding: 20px 24px;
}

/* Data Card */
.raporlar-data-card {
    background: var(--report-card-bg);
    border-radius: var(--report-radius);
    border: 1px solid var(--report-card-border);
    box-shadow: var(--report-shadow);
    margin-bottom: 24px;
    overflow: hidden;
}

/* Table */
.reports-table-card {
    background: var(--report-card-bg);
    border-radius: var(--report-radius);
    border: 1px solid var(--report-card-border);
    box-shadow: var(--report-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.reports-table-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--report-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fafbfc, #fff);
}

.reports-table-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--report-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reports-table-title i {
    color: var(--report-primary);
}

.reports-table-search,
.raporlar-search-input {
    padding: 10px 16px;
    border: 1px solid var(--report-card-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--report-text);
    background: #f8f9fa;
    min-width: 200px;
    transition: all 0.3s ease;
}

.reports-table-search:focus,
.raporlar-search-input:focus {
    outline: none;
    border-color: var(--report-primary);
    box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
}

.raporlar-table-responsive {
    overflow-x: auto;
}

.reports-table,
.raporlar-table {
    width: 100%;
    border-collapse: collapse;
}

.reports-table thead,
.raporlar-table thead {
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

.reports-table th,
.raporlar-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--report-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--report-card-border);
    white-space: nowrap;
}

.reports-table td,
.raporlar-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--report-text);
    border-bottom: 1px solid var(--report-card-border);
}

.reports-table tbody tr,
.raporlar-table tbody tr {
    transition: all 0.2s ease;
}

.reports-table tbody tr:hover,
.raporlar-table tbody tr:hover {
    background: rgba(254, 73, 44, 0.04);
}

.reports-table tbody tr:last-child td,
.raporlar-table tbody tr:last-child td {
    border-bottom: none;
}

/* Badges */
.reports-table-badge,
.raporlar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.reports-table-badge.success,
.raporlar-badge.success {
    background: rgba(39, 174, 96, 0.12);
    color: var(--report-success);
}

.reports-table-badge.warning,
.raporlar-badge.warning {
    background: rgba(243, 156, 18, 0.12);
    color: var(--report-warning);
}

.reports-table-badge.danger,
.raporlar-badge.danger {
    background: rgba(231, 76, 60, 0.12);
    color: var(--report-danger);
}

.reports-table-badge.info,
.raporlar-badge.info {
    background: rgba(52, 152, 219, 0.12);
    color: var(--report-info);
}

.raporlar-badge.primary {
    background: rgba(254, 73, 44, 0.12);
    color: var(--report-primary);
}

/* Product Cell */
.reports-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reports-product-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.reports-product-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--report-text);
}

.reports-product-info span {
    font-size: 12px;
    color: var(--report-text-muted);
}

/* Top Lists */
.reports-top-list,
.raporlar-top-list {
    display: flex;
    flex-direction: column;
}

.reports-top-item,
.raporlar-top-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--report-card-border);
    transition: all 0.2s ease;
}

.reports-top-item:hover,
.raporlar-top-item:hover {
    background: rgba(254, 73, 44, 0.04);
}

.reports-top-item:last-child,
.raporlar-top-item:last-child {
    border-bottom: none;
}

.reports-top-rank,
.raporlar-top-rank {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: #f1f3f4;
    color: var(--report-text-muted);
}

.reports-top-item:nth-child(1) .reports-top-rank,
.raporlar-top-item:nth-child(1) .raporlar-top-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.reports-top-item:nth-child(2) .reports-top-rank,
.raporlar-top-item:nth-child(2) .raporlar-top-rank {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: white;
}

.reports-top-item:nth-child(3) .reports-top-rank,
.raporlar-top-item:nth-child(3) .raporlar-top-rank {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: white;
}

.reports-top-info,
.raporlar-top-info {
    flex: 1;
}

.reports-top-name,
.raporlar-top-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--report-text);
    margin: 0 0 2px;
}

.reports-top-meta,
.raporlar-top-meta {
    font-size: 12px;
    color: var(--report-text-muted);
}

.reports-top-value,
.raporlar-top-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--report-primary);
}

/* Mini Stats */
.reports-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
}

.reports-mini-stat {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.reports-mini-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--report-text);
    margin-bottom: 4px;
}

.reports-mini-stat-label {
    font-size: 12px;
    color: var(--report-text-muted);
}

/* Progress Bar */
.reports-progress {
    width: 100%;
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.reports-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.reports-progress-bar.success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.reports-progress-bar.warning {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.reports-progress-bar.danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Export Button */
.reports-export-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f8f9fa;
    border: 1px solid var(--report-card-border);
    border-radius: 8px;
    color: var(--report-text-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reports-export-btn:hover {
    background: var(--report-primary);
    border-color: var(--report-primary);
    color: white;
}

/* Empty State */
.reports-empty,
.raporlar-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.reports-empty-icon,
.raporlar-empty-state i {
    font-size: 64px;
    color: var(--report-text-muted);
    opacity: 0.4;
    margin-bottom: 16px;
}

.reports-empty h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--report-text);
    margin: 0 0 8px;
}

.reports-empty p,
.raporlar-empty-state p {
    font-size: 14px;
    color: var(--report-text-muted);
    margin: 0;
}

/* Alert List */
.raporlar-alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.raporlar-alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.08);
    border-left: 3px solid #e74c3c;
}

.raporlar-alert-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
}

.raporlar-alert-content {
    display: flex;
    flex-direction: column;
}

.raporlar-alert-title {
    font-weight: 600;
    color: var(--report-text);
    font-size: 0.95rem;
}

.raporlar-alert-desc {
    color: var(--report-text-muted);
    font-size: 0.85rem;
}

/* Comparison */
.raporlar-comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--report-card-border);
}

.raporlar-comparison-item:last-child {
    border-bottom: none;
}

.raporlar-comparison-label {
    font-size: 14px;
    color: var(--report-text-muted);
}

.raporlar-comparison-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--report-text);
}

.raporlar-comparison-change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.raporlar-comparison-change.positive {
    background: rgba(39, 174, 96, 0.12);
    color: var(--report-success);
}

.raporlar-comparison-change.negative {
    background: rgba(231, 76, 60, 0.12);
    color: var(--report-danger);
}

/* Kritik stok satırı */
.kritik-row {
    background: rgba(231, 76, 60, 0.06) !important;
}

.kritik-row:hover {
    background: rgba(231, 76, 60, 0.1) !important;
}

/* Inner Table */
.raporlar-table-inner {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.raporlar-table-inner th,
.raporlar-table-inner td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.raporlar-table-inner th {
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Button Small */
.raporlar-btn-sm {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--report-primary), var(--report-primary-light));
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.raporlar-btn-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.3);
}

/* Malzeme Detay */
.malzeme-detay td {
    background: linear-gradient(135deg, #f8f9fa, #fff) !important;
    padding: 20px !important;
}

.malzeme-liste h4 {
    margin-bottom: 15px;
    color: var(--report-text);
    font-size: 1rem;
}

.malzeme-liste h4 i {
    color: var(--report-primary);
    margin-right: 8px;
}

/* Text helpers */
.text-success { color: var(--report-success) !important; }
.text-danger { color: var(--report-danger) !important; }

.total-row {
    background: linear-gradient(135deg, #f8f9fa, #fff) !important;
}

.total-row td {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1400px) {
    .reports-kpi-grid,
    .raporlar-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .reports-chart-grid,
    .raporlar-charts-row {
        grid-template-columns: 1fr;
    }
    
    .reports-chart-card.reports-chart-full,
    .raporlar-chart-card.full-width {
        grid-column: span 1;
    }
    
    .reports-title {
        font-size: 22px;
    }
    
    .raporlar-page-title h1 {
        font-size: 22px;
    }
    
    .reports-kpi-value,
    .raporlar-kpi-value {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .reports-container,
    .raporlar-main-container {
        padding: 16px;
    }
    
    .reports-header {
        padding: 20px;
    }
    
    .reports-kpi-grid,
    .raporlar-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-filters,
    .raporlar-filters {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .raporlar-date-form {
        margin-left: 0;
        width: 100%;
    }
    
    .reports-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .raporlar-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reports-subnav,
    .raporlar-tabs {
        width: 100%;
    }
    
    .reports-chart-header,
    .raporlar-card-header,
    .reports-table-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .reports-table-search,
    .raporlar-search-input {
        width: 100%;
    }
}

/* ApexCharts Overrides */
.apexcharts-tooltip {
    background: var(--report-card-bg) !important;
    border: 1px solid var(--report-card-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--report-shadow) !important;
}

.apexcharts-tooltip-title {
    background: #f8f9fa !important;
    border-bottom: 1px solid var(--report-card-border) !important;
    color: var(--report-text) !important;
    font-weight: 600 !important;
}

.apexcharts-tooltip-text {
    color: var(--report-text) !important;
}

.apexcharts-legend-text {
    color: var(--report-text-muted) !important;
}

.apexcharts-xaxis-label,
.apexcharts-yaxis-label {
    fill: var(--report-text-muted) !important;
}

.apexcharts-gridline {
    stroke: rgba(0, 0, 0, 0.06) !important;
}

/* Animation */
@keyframes reports-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reports-animate,
.raporlar-animate {
    animation: reports-fadeIn 0.4s ease forwards;
}

.reports-animate-delay-1 { animation-delay: 0.1s; }
.reports-animate-delay-2 { animation-delay: 0.2s; }
.reports-animate-delay-3 { animation-delay: 0.3s; }
.reports-animate-delay-4 { animation-delay: 0.4s; }
