* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif !important;
  transition: all 0.3s ease !important;
}

body {
  background: linear-gradient(135deg, #151936 0%, #1a1f45 100%);
  color: #979797;
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  background: linear-gradient(
    180deg,
    rgba(21, 25, 54, 0.95) 0%,
    rgba(21, 25, 54, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(151, 151, 151, 0.15);
  position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-badge {
  display: inline-block;
  background: rgba(189, 240, 230, 0.15);
  color: #bdf0e6;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(189, 240, 230, 0.3);
}

.header h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #bdf0e6;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: linear-gradient(135deg, #bdf0e6 0%, #a8e6dc 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, #d8eff2 0%, #c4e3e8 100%);
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, #e2f7f3 0%, #cef0ea 100%);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-card h3 {
  color: #151936;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.stat-number {
  color: #151936;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  color: #151936;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.6;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

section h2 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}

.trip-count {
  background: rgba(189, 240, 230, 0.15);
  color: #bdf0e6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(189, 240, 230, 0.3);
}

.trips-section {
  margin-bottom: 4rem;
}

.table-container {
  background: rgba(189, 240, 230, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(189, 240, 230, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trips-table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}

.trips-table tr {
  white-space: nowrap;
}

.trips-table th {
  background: linear-gradient(
    180deg,
    rgba(21, 25, 54, 0.9) 0%,
    rgba(21, 25, 54, 0.7) 100%
  );
  color: #bdf0e6;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(189, 240, 230, 0.3);
}

.trips-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(151, 151, 151, 0.15);
  color: #d8eff2;
  font-weight: 400;
  font-size: 0.95rem;
}

.trips-table tbody tr {
  transition: all 0.2s ease;
}

.trips-table tbody tr:hover {
  background: rgba(189, 240, 230, 0.08);
}

.trips-table tbody tr:last-child td {
  border-bottom: none;
}

.duration-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fed6d6 0%, #fec4c4 100%);
  color: #151936;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.charts-section {
  margin-bottom: 4rem;
}

.chart-container {
  background: rgba(216, 239, 242, 0.08);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(216, 239, 242, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(21, 25, 54, 0.3) 0%,
    rgba(21, 25, 54, 0.1) 100%
  );
  border: 2px dashed rgba(151, 151, 151, 0.3);
  border-radius: 12px;
}

.chart-placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d8eff2;
}

.chart-placeholder-text p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.chart-placeholder-text small {
  font-size: 0.875rem;
  opacity: 0.7;
  color: #979797;
}

.footer {
  background: linear-gradient(
    180deg,
    rgba(21, 25, 54, 0.8) 0%,
    rgba(21, 25, 54, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(151, 151, 151, 0.15);
  margin-top: 3rem;
}

.footer p {
  color: #979797;
  opacity: 0.8;
  font-size: 0.875rem;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem 0;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #151936 0%, #1a1f45 100%);
  color: #bdf0e6;
  border: 1.5px solid #bdf0e6;
  border-radius: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(189, 240, 230, 0.06);
  outline: none;
}

.pagination-btn svg {
  width: 1.15em;
  height: 1.15em;
  fill: #bdf0e6;
  pointer-events: none;
}

.pagination-btn:disabled {
  opacity: 0.45;
  background: #2a2f54;
  color: #b9b9b9;
  border-color: #343654;
  cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover,
.pagination-btn:not(:disabled):focus {
  background: linear-gradient(135deg, #bdf0e6 0%, #a8e6dc 100%);
  color: #151936;
  border-color: #bdf0e6;
}

.pagination-btn:not(:disabled):hover svg,
.pagination-btn:not(:disabled):focus svg {
  fill: #151936;
}

#pageIndicator {
  background: rgba(189, 240, 230, 0.13);
  color: #bdf0e6;
  padding: 0.4rem 1.3rem;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1.02rem;
  border: 1px solid rgba(189, 240, 230, 0.13);
  user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 2rem 1rem;
  }

  .summary-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .header {
    padding: 2rem 0;
  }

  .header h1 {
    font-size: 2rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .table-container {
    overflow-x: auto;
  }

  .trips-table th,
  .trips-table td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }
  .pagination-controls {
    gap: 1rem;
    padding-top: 0.75rem;
  }
  .pagination-btn {
    padding: 0.425rem 0.75rem;
    font-size: 0.925rem;
  }
  #pageIndicator {
    font-size: 0.95rem;
    padding: 0.3rem 0.77rem;
  }
}
