/* public/css/reports.css */

.reports-header {
    border-left: 4px solid #0ea5e9; /* sky-500 */
  }
  
  /* View dropdown */
  .reports-view-select {
    min-width: 130px;
  }
  
  /* Filters + chips */
  .reports-input {
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    padding: 6px 10px;
    font-size: 0.75rem;
    background-color: #ffffff;
  }
  
  .reports-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
  }
  
  .reports-chip {
    font-size: 11px;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    padding: 3px 8px;
    background-color: #f9fafb;
  }
  
  .reports-chip:hover {
    background-color: #e5e7eb;
  }
  
  /* Buttons */
  .reports-btn-primary {
    border-radius: 9999px;
    padding: 6px 16px;
    background-color: #0f172a;
    color: #f9fafb;
    border: none;
  }
  
  .reports-btn-primary:hover {
    background-color: #020617;
  }
  
  /* KPI cards */
  .reports-kpi-card {
    position: relative;
  }
  
  .reports-kpi-card::after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(to bottom, #0ea5e9, transparent);
  }
  
  /* Chart area */
  .reports-chart-wrapper {
    height: 220px;
  }
  
  #reports-revenue-chart {
    width: 100%;
    height: 100%;
  }
  
  /* Table */
  .reports-table tbody tr:hover {
    background-color: #f9fafb;
  }
  
  /* Top plates list */
  .reports-top-plate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.75rem;
    padding: 6px 8px;
    border: 1px solid #e5e7eb;
  }
  
  .reports-top-plate-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .reports-top-plate-badge {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 9999px;
    background-color: #f3f4f6;
    color: #4b5563;
  }
  
  /* Entry / Exit direction pill */
  .reports-ee-direction-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
  }
  
  .reports-ee-direction-entry {
    background-color: #ecfdf5;
    color: #16a34a;
  }
  
  .reports-ee-direction-exit {
    background-color: #fef2f2;
    color: #b91c1c;
  }
  
  /* View containers */
  .reports-section {
    display: none;
  }
  
  .reports-section-active {
    display: block;
  }
  