/* === Modern Car Dashboard CSS - Professional Design === */

:root {
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --secondary: #34a853;
  --danger: #ea4335;
  --warning: #fbbc05;
  --dark: #202124;
  --gray: #5f6368;
  --gray-light: #dadce0;
  --light: #f8f9fa;
  --border-color: #e8eaed;
  --text-primary: #202124;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: var(--dark);
  line-height: 1.6;
}

/* === LOGIN SCREEN === */
.login-screen {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #3c4043 100%);
}

.login-screen.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: white;
}

.login-logo i {
  font-size: 36px;
  margin-right: 16px;
  color: var(--primary);
}

.login-logo h1 {
  font-size: 24px;
  font-weight: 600;
}

.login-form {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 14px;
  transition: var(--transition);
  background: white;
  color: var(--dark);
  margin-bottom: 16px;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.login-error {
  color: var(--danger);
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

/* === DASHBOARD SCREEN === */
.dashboard-screen {
  display: none;
}

.dashboard-screen.active {
  display: block;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* === SIDEBAR === */
.sidebar {
  width: 280px;
  background: linear-gradient(135deg, var(--dark) 0%, #3c4043 100%);
  color: white;
  padding: 24px 16px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 100;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 8px;
}

.logo i {
  font-size: 28px;
  margin-right: 12px;
  color: var(--primary);
}

.logo h1 {
  font-size: 20px;
  font-weight: 600;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gray-light);
  font-weight: 500;
}

.filter-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.filter-option.active {
  background-color: var(--primary);
}

.filter-option i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-light);
}

/* === MAIN CONTENT === */
.main-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.8px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-controls {
  display: flex;
  gap: 16px;
}

/* === BUTTONS === */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--gray-light);
  color: var(--gray);
}

.btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* Sidebar button styles */
.sidebar .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.sidebar .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* === NO DATA MESSAGE === */
.no-data-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.no-data-message p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.no-data-message small {
  font-size: 14px;
  color: var(--gray);
}

/* === CARDS === */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-icon.primary {
  background-color: rgba(26, 115, 232, 0.1);
  color: var(--primary);
}

.card-icon.success {
  background-color: rgba(52, 168, 83, 0.1);
  color: var(--secondary);
}

.card-icon.danger {
  background-color: rgba(234, 67, 53, 0.1);
  color: var(--danger);
}

.card-icon.warning {
  background-color: rgba(251, 188, 5, 0.1);
  color: var(--warning);
}

.card-description {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.period-label {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}

/* === CHARTS === */
.chart-container {
  width: 100%;
  height: 400px;
  margin: 20px 0;
  position: relative;
}

.chart-container-medium {
  width: 100%;
  height: 350px;
  margin: 20px 0;
}

.chart-container-small {
  width: 100%;
  height: 300px;
  margin: 20px 0;
}

/* Specific height for individual sales chart to show all points clearly */
#individualSalesChart {
  height: 500px !important;
}

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* === FORM ELEMENTS === */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 14px;
  transition: var(--transition);
  background: white;
  color: var(--dark);
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

/* === TABLES === */
.data-table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  margin: 20px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--gray-light);
  font-weight: 600;
  color: var(--gray);
  font-size: 14px;
  background-color: var(--light);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 14px;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.price-cell {
  font-weight: 600;
  color: var(--secondary);
  text-align: right;
}

.date-cell {
  color: var(--gray);
}

.table-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.pagination button {
  padding: 8px 16px;
  border: 1px solid var(--gray-light);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
}

.pagination button:hover:not(:disabled) {
  background-color: var(--light);
  border-color: var(--primary);
  color: var(--primary);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination span {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}

/* === LOADING INDICATOR === */
.loading-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.loading-indicator.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === CHASSIS SELECTOR === */
.chassis-selector-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.chassis-multiselect {
  margin-bottom: 16px;
}

.chassis-multiselect-dropdown {
  position: relative;
  width: 100%;
}

.multiselect-header {
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-size: 14px;
}

.multiselect-header:hover {
  border-color: var(--primary);
}

.selected-count {
  font-weight: 500;
}

.dropdown-arrow {
  color: var(--gray);
  font-size: 12px;
  transition: var(--transition);
}

.multiselect-options-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  margin-top: 4px;
  max-height: 250px; /* Increased for better scrolling */
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.multiselect-options-dropdown.show {
  display: block;
}

.multiselect-option {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.multiselect-option:last-child {
  border-bottom: none;
}

.multiselect-option:hover {
  background-color: var(--light);
}

.multiselect-option input[type="checkbox"] {
  margin-right: 12px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.checkmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-light);
  border-radius: 3px;
  margin-right: 12px;
  position: relative;
  transition: var(--transition);
}

.multiselect-option input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.multiselect-option input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-group {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* === PRICE RANGE DETAILS === */
.price-range-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.price-range-details.hidden {
  display: none;
}

/* Price Range Table Styling */
.price-range-details .overflow-y-auto {
  overflow-y: auto;
}

.price-range-details .max-h-96 {
  max-height: 24rem; /* 384px */
}

.price-range-details .rounded-lg {
  border-radius: 0.5rem;
}

.price-range-details .border {
  border-width: 1px;
}

.price-range-details .border-gray-300 {
  border-color: var(--gray-light);
}

.price-range-details .w-full {
  width: 100%;
}

.price-range-details .text-sm {
  font-size: 0.875rem;
}

.price-range-details .sticky {
  position: sticky;
}

.price-range-details .top-0 {
  top: 0;
}

.price-range-details .bg-gray-100 {
  background-color: var(--light);
}

.price-range-details .text-gray-700 {
  color: var(--gray);
}

.price-range-details .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.price-range-details .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.price-range-details .text-left {
  text-align: left;
}

.price-range-details .text-right {
  text-align: right;
}

.price-range-details .font-semibold {
  font-weight: 600;
}

.price-range-details .border-b {
  border-bottom-width: 1px;
}

.price-range-details .divide-y {
  border-top: 0;
}

.price-range-details .divide-y > * + * {
  border-top: 1px solid var(--border-color);
}

.price-range-details .divide-gray-200 > * + * {
  border-color: var(--border-color);
}

.price-range-details .hover\:bg-blue-50:hover {
  background-color: rgba(26, 115, 232, 0.05);
}

.price-range-details .transition-colors {
  transition: background-color 0.15s ease-in-out;
}

.price-range-details .text-gray-900 {
  color: var(--dark);
}

.price-range-details .text-gray-600 {
  color: var(--gray);
}

.price-range-details .text-green-600 {
  color: var(--secondary);
}

.price-range-details .font-bold {
  font-weight: 700;
}

/* Additional utility classes for price range details */
.price-range-details .mb-4 {
  margin-bottom: 1rem;
}

.price-range-details .text-center {
  text-align: center;
}

.price-range-details .py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.price-range-details .text-gray-500 {
  color: var(--gray);
}

/* Scrollbar styling for price range table */
.price-range-details .overflow-y-auto::-webkit-scrollbar {
  width: 8px;
}

.price-range-details .overflow-y-auto::-webkit-scrollbar-track {
  background: var(--light);
  border-radius: 4px;
}

.price-range-details .overflow-y-auto::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 4px;
}

.price-range-details .overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* === NOTIFICATIONS === */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  font-weight: 500;
  max-width: 300px;
  animation: slideInRight 0.3s ease-out;
}

.notification.warning {
  background: var(--warning);
  color: var(--dark);
}

.notification.info {
  background: var(--primary);
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* Make multiselect options scrollable */
.multiselect-options-dropdown::-webkit-scrollbar {
  width: 6px;
}

.multiselect-options-dropdown::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 3px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-content {
    padding: 16px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header h1 {
    font-size: 24px;
  }

  .header-controls {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .table-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-controls {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }

  .card {
    padding: 16px;
  }

  .chart-container {
    height: 350px;
  }

  .chart-container-medium {
    height: 300px;
  }

  .chart-container-small {
    height: 250px;
  }

  #individualSalesChart {
    height: 400px !important;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 12px;
  }

  .header h1 {
    font-size: 20px;
  }

  .card-title {
    font-size: 16px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* === INFO MESSAGE STYLES === */
.info-message {
  background: rgba(26, 115, 232, 0.1);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.5;
}

.info-message strong {
  font-weight: 600;
}
/* === ENHANCED SEARCH FILTERS === */
.search-filters {
  background: var(--light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group .form-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.search-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-main {
  margin-bottom: 0;
}

.search-results-info {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--secondary);
  font-weight: 500;
}

.search-results-info .highlight {
  background: var(--secondary);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 4px;
}

.no-results-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray);
}

.no-results-message i {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--gray-light);
}

.no-results-message h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark);
}

.no-results-message p {
  font-size: 14px;
  color: var(--gray);
}

/* Active filter indicators */
.filter-active {
  position: relative;
}

.filter-active::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  border: 2px solid white;
}

/* Responsive search filters */
@media (max-width: 768px) {
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .search-actions {
    grid-template-columns: 1fr;
  }
}
/* === STRIP CHART STYLES === */
.strip-chart-container {
  width: 100%;
  height: 500px;
  margin: 20px 0;
}

.strip-point {
  transition: all 0.3s ease;
  cursor: pointer;
}

.strip-point:hover {
  transform: scale(1.5);
  z-index: 1000;
}

.point-hover-info {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1001;
  pointer-events: none;
}

/* Price range details styling */
.price-range-details {
  margin-top: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.price-range-details table {
  width: 100%;
  border-collapse: collapse;
}

.price-range-details th {
  background: #e9ecef;
  font-weight: 600;
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
}

.price-range-details td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
}

.price-range-details tr:hover {
  background: #f8f9fa;
}

/* Enhanced search results info */
.search-results-info {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #34a853;
  font-weight: 500;
}

.search-results-info .highlight {
  background: #34a853;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 4px;
}

.no-results-message {
  text-align: center;
  padding: 40px 20px;
  color: #5f6368;
}

.no-results-message i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #dadce0;
}

.no-results-message h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #202124;
}

.no-results-message p {
  font-size: 14px;
  color: #5f6368;
}

/* Active filter indicators */
.filter-active {
  position: relative;
}

.filter-active::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #34a853;
  border-radius: 50%;
  border: 2px solid white;
}
