:root {
  --primary: #3a0ca3;
  --secondary: #4361ee;
  --accent: #f72585;
  --success: #4cc9f0;
  --warning: #f9c74f;
  --light: #f8f9fa;
  --dark: #212529;
  --chart-1: #7209b7;
  --chart-2: #3a0ca3;
  --chart-3: #4361ee;
  --chart-4: #4cc9f0;
  --chart-5: #f72585;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #b5179e 100%);
}

.demand-footfall {
  font-family: "Poppins", sans-serif;
  background-color: #f5f7f9;
  color: #333;
  overflow-x: hidden;
  /* Heatmap simulation */
  /* Scatter plot simulation */
  /* Bar chart simulation */
  /* Animation for elements */
  /* Responsive adjustments */
}
.demand-footfall .dashboard-container {
  max-width: 1800px;
  margin: 0 auto;
}
.demand-footfall .topbar {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 15px rgba(58, 12, 163, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demand-footfall .stats-bar {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--accent);
}
.demand-footfall .stats-bar:hover {
  transform: translateY(-5px);
}
.demand-footfall .stat-item {
  text-align: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}
.demand-footfall .stat-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(67, 97, 238, 0.3), transparent);
}
.demand-footfall .stat-item:hover {
  background-color: rgba(76, 201, 240, 0.1);
  border-radius: 12px;
}
.demand-footfall .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.demand-footfall .stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.demand-footfall .filter-bar {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--success);
}
.demand-footfall .filter-bar:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.demand-footfall .chart-container {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 3px solid var(--chart-1);
}
.demand-footfall .chart-container:nth-child(2) {
  border-top: 3px solid var(--chart-2);
}
.demand-footfall .chart-container:nth-child(3) {
  border-top: 3px solid var(--chart-3);
}
.demand-footfall .chart-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.demand-footfall .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}
.demand-footfall .chart-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.demand-footfall .chart-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #3b3d3f !important;
  font-weight: 500;
  overflow: hidden;
  padding: 20px 0px;
  position: relative;
}
.demand-footfall .chart-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  100% {
    left: 100%;
  }
}
.demand-footfall .table-container {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--chart-1);
}
.demand-footfall .table-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.demand-footfall .action-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.demand-footfall .btn-action {
  background: white;
  border: 1px solid #dee2e6;
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.demand-footfall .btn-action:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(58, 12, 163, 0.2);
  border-color: var(--primary);
}
.demand-footfall .table thead th {
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-weight: 500;
  padding: 0.9rem;
}
.demand-footfall .table tbody tr {
  transition: all 0.3s ease;
}
.demand-footfall .table tbody tr:hover {
  background-color: rgba(76, 201, 240, 0.1);
  transform: scale(1.01);
}
.demand-footfall .table tbody td {
  padding: 0.9rem;
  vertical-align: middle;
  border-color: #e9ecef;
}
.demand-footfall .badge-score {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}
.demand-footfall .progress {
  height: 10px;
  border-radius: 5px;
  background-color: #e9ecef;
}
.demand-footfall .progress-bar {
  border-radius: 5px;
}
.demand-footfall .heatmap-simulation {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 2px;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.demand-footfall .heatmap-cell {
  border-radius: 3px;
  transition: all 0.3s ease;
}
.demand-footfall .heatmap-cell:hover {
  transform: scale(1.2);
  z-index: 2;
}
.demand-footfall .scatter-simulation {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 20px;
}
.demand-footfall .scatter-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
}
.demand-footfall .scatter-point:hover {
  width: 22px;
  height: 22px;
  z-index: 2;
}
.demand-footfall .bar-chart-simulation {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  padding: 20px;
  gap: 15px;
}
.demand-footfall .bar {
  width: 45px;
  border-radius: 5px 5px 0 0;
  transition: all 0.3s ease;
  position: relative;
}
.demand-footfall .bar:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.demand-footfall .bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #333536;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.demand-footfall .animate-fadein {
  animation: fadeIn 0.6s ease forwards;
}
@media (max-width: 1200px) {
  .demand-footfall .stat-value {
    font-size: 1.6rem;
  }
}
@media (max-width: 992px) {
  .demand-footfall .stat-value {
    font-size: 1.5rem;
  }
  .demand-footfall .chart-placeholder {
    height: 250px;
  }
  .demand-footfall .stat-item:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .demand-footfall .stats-bar .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .demand-footfall .stat-item {
    min-width: 140px;
  }
  .demand-footfall .action-buttons {
    justify-content: center;
  }
  .demand-footfall .btn-action {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .demand-footfall .topbar h4 {
    font-size: 1.25rem;
  }
  .demand-footfall .chart-placeholder {
    height: 220px;
  }
  .demand-footfall .filter-bar .row {
    gap: 1rem;
  }
  .demand-footfall .btn-action span {
    display: none;
  }
  .demand-footfall .btn-action {
    padding: 0.6rem;
  }
}
.demand-footfall .btn-outline-light:hover {
  background: transparent;
}
.demand-footfall .btn-outline-light:active {
  background: transparent;
}
.demand-footfall .btn-outline-light:focus {
  background: transparent;
}
.demand-footfall .table-hover thead tr th {
  color: #fff !important;
}
.demand-footfall .fa-solid.fa-bell {
  font-size: 16px;
}
.demand-footfall .btn-sm {
  padding: 8px 15px;
}
.demand-footfall .btn-outline-light.dropdown-toggle {
  font-size: 14px;
  padding: 6px;
}
.demand-footfall .btn-outline-light.dropdown-toggle i {
  font-size: 13px;
}/*# sourceMappingURL=demand-footfall.css.map */