﻿@charset "UTF-8";
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

#statistical {
  /* Header */
  /* KPI Cards */
  /* Charts Section */
  /* Table */
  /* Footer Alert */
  /* Responsive */
}
#statistical .header-statistical {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}
#statistical .title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
#statistical .filters {
  display: flex;
  gap: 15px;
  align-items: center;
}
#statistical .filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
#statistical .filter-group .date-range {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}
#statistical .filter-group i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 16px;
}
#statistical .filter-group label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
#statistical select, #statistical input[type=date] {
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
  background: white;
}
#statistical select:hover, #statistical input[type=date]:hover {
  border-color: #667eea;
}
#statistical select:focus, #statistical input[type=date]:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}
#statistical .kpi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
#statistical .kpi-card {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-left: 4px solid;
  position: relative;
  overflow: hidden;
}
#statistical .kpi-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  transform: translate(30px, -30px);
}
#statistical .kpi-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#statistical .kpi-card:nth-child(1) {
  border-left-color: #667eea;
}
#statistical .kpi-card:nth-child(2) {
  border-left-color: #f093fb;
}
#statistical .kpi-card:nth-child(3) {
  border-left-color: #4facfe;
}
#statistical .kpi-card:nth-child(4) {
  border-left-color: #43e97b;
}
#statistical .kpi-card:nth-child(5) {
  border-left-color: #fa709a;
}
#statistical .kpi-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
#statistical .kpi-value {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}
#statistical .kpi-change {
  font-size: 16px;
  color: #2cab00;
  font-weight: 600;
}
#statistical .kpi-change.negative {
  color: #ff6b6b;
}
#statistical .charts-container {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}
#statistical .chart-wrapper {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#statistical .chart-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
#statistical .chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
#statistical .map-container {
  height: 350px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#statistical .map-placeholder {
  text-align: center;
  color: #1976d2;
}
#statistical .table-wrapper {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
#statistical .btn-detail {
  background: #4f76dd;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}
#statistical .btn-detail:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
#statistical .alert-footer {
  background: #ff6b6b;
  color: white;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}
#statistical .alert-icon {
  font-size: 24px;
}
#statistical .alert-icon i {
  color: #ffdc47;
}
#statistical .alert-content h3 {
  margin-bottom: 5px;
  font-size: 16px;
}
#statistical .alert-content p {
  font-size: 14px;
  opacity: 0.95;
}
@media (max-width: 768px) {
  #statistical .header {
    flex-direction: column;
    gap: 20px;
  }
  #statistical .filters {
    flex-direction: column;
    width: 100%;
  }
  #statistical .filter-group {
    width: 100%;
  }
  #statistical select, #statistical input[type=date] {
    width: 100%;
  }
  #statistical .chart-row {
    grid-template-columns: 1fr;
  }
  #statistical .kpi-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  #statistical .table-wrapper {
    overflow-x: auto;
  }
}
