/* REPORTS */
.reports-filter-card {
      background: var(--surface);
      border-radius: 8px;
      padding: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
      border: 1px solid var(--border);
      margin-bottom: 18px;
	    }

    .reports-filter-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .reports-filter-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0;
	    }

    .reports-filter-note {
      color: var(--muted);
      font-size: 11px;
    }

    .reports-filter-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      align-items: flex-end;
	    }

    .reports-filter-label {
      display: block;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .reports-date-input {
      width: 100%;
    }

    .reports-select,
    .reports-text-input {
      width: 100%;
      min-width: 0;
	    }

    .reports-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 14px;
	    }

    .reports-card {
      background: var(--surface);
      border-radius: 8px;
      padding: 18px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }

    .reports-card-icon {
      font-size: 26px;
      margin-bottom: 10px;
	    }

    .reports-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .reports-card-text {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 18px;
      flex-grow: 1;
	    }

    .reports-btn-full {
      width: 100%;
      justify-content: center;
	    }

    .reports-btn-purple {
      background: #8b5cf6;
    }

    .reports-btn-green {
      background: #10b981;
    }

    .reports-btn-orange {
      background: #f59e0b;
    }

    .reports-btn-blue {
      background: #3b82f6;
    }

    .reports-btn-red {
      background: #ef4444;
    }

    .reports-btn-teal {
      background: #14b8a6;
    }
