
  @media (max-width: 768px) {
      .page-title h1 {
          font-size: 26px;
      }

      .stat-card .stat-value {
          font-size: 22px;
      }

      .stat-card {
          padding: 16px 18px;
          margin-bottom: 14px;
      }
  }

  .report-container {
      background-color: #f5f5f5;
      min-height: 85vh;
      padding: 30px 0;
  }

  .page-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .page-title h1 {
      font-size: 32px;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
  }

  .page-title p {
      color: #757575;
      font-size: 15px;
  }

  .report-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin-bottom: 20px;
      transition: all 0.2s ease;
      border: 1px solid #e0e0e0;
  }

  .report-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .card-header-custom {
      padding: 16px 20px;
      background-color: #fafafa;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .card-header-custom h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: #333;
  }

  .card-header-custom .material-icons {
      font-size: 22px;
      color: #616161;
  }

  .report-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .report-list li {
      border-bottom: 1px solid #f0f0f0;
  }

  .report-list li:last-child {
      border-bottom: none;
  }

  .report-list a {
      display: flex;
      align-items: center;
      padding: 14px 20px;
      color: #555;
      text-decoration: none !important;
      transition: all 0.15s ease;
      font-size: 14px;
  }

  .report-list a:hover {
      background-color: #f5f5f5;
      color: #1976d2;
  }

  .report-list a .material-icons {
      font-size: 18px;
      margin-right: 10px;
      color: #9e9e9e;
      transition: color 0.15s ease;
  }

  .report-list a:hover .material-icons {
      color: #1976d2;
  }

  @media (max-width: 768px) {
      .page-title h1 {
          font-size: 26px;
      }

      .report-card {
          margin-bottom: 14px;
      }

      .card-header-custom {
          padding: 14px 16px;
      }

      .report-list a {
          padding: 12px 16px;
      }
  }
    .report-filter-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      overflow: visible;
    }
    .report-filter-card .card-header {
      background: linear-gradient(135deg, #FDA2A2 0%, #f8b4b4 100%);
      border-bottom: none;
      padding: 12px 20px;
      border-radius: 12px 12px 0 0;
    }
    .report-filter-card .card-header h6 {
      color: #555;
      font-weight: 600;
      margin: 0;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .report-filter-card .card-body {
      padding: 12px 16px;
    }
    .filter-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: #555;
      margin-bottom: 2px;
    }
    .filter-group {
      margin-bottom: 0;
    }
    .filter-group .form-control {
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 0.85rem;
      transition: border-color 0.2s;
    }
    .filter-group .form-control:focus {
      border-color: #FDA2A2;
      box-shadow: 0 0 0 0.15rem rgba(253, 162, 162, 0.25);
    }
    .btn-report {
      border-radius: 6px;
      padding: 5px 20px;
      font-weight: 600;
      font-size: 0.85rem;
    }
    .btn-report-primary {
      background: linear-gradient(135deg, #FDA2A2 0%, #f8b4b4 100%);
      border: none;
      color: #555;
    }
    .btn-report-primary:hover {
      background: linear-gradient(135deg, #f08e8e 0%, #FDA2A2 100%);
      color: #fff;
    }
  
  .pivot-table { border-collapse: collapse; font-size: 0.82rem; }
  .pivot-table th, .pivot-table td {
    border: 1px solid #dee2e6; padding: 4px 8px; white-space: nowrap;
  }
  .pivot-table thead th {
    background: #f1f3f5; text-align: center; font-weight: 600; position: sticky; top: 0; z-index: 1;
  }
  .pivot-table thead th:first-child { position: sticky; left: 0; z-index: 2; }
  .pivot-table tbody td:first-child { position: sticky; left: 0; background: #fff; font-weight: 600; z-index: 1; }
  .pivot-table .amount { text-align: right; }
  .pivot-table .pct { text-align: right; font-size: 0.75rem; }
  .pivot-table .day-total { font-weight: 600; }
  .pivot-table tfoot td { font-weight: 600; }
  .pivot-table tfoot td:first-child { position: sticky; left: 0; z-index: 1; }
  .table-wrapper { overflow-x: auto; border-radius: 8px; border: 1px solid #dee2e6; }