
/* Affreo Analytics Dashboard Styles */
body {
  background: #0d1b2a;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  color: #4cc9f0;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.card {
  background: #1b263b;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.metric {
  font-size: 18px;
  color: #b0bfcf;
  margin-bottom: 10px;
}

.value {
  font-size: 28px;
  font-weight: bold;
  color: #4cc9f0;
}

.traffic-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 150px;
  margin-top: 10px;
}

.bar {
  background-color: #4cc9f0;
  width: 40px;
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
}

.bar:hover {
  background-color: #90f3ef;
}

.label {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #b0bfcf;
}

.insight {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e6ed;
}

.highlight {
  color: #90f3ef;
  font-weight: bold;
}

/* Button styles */
.btn {
  background: linear-gradient(45deg, #4cc9f0, #00d4ff);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  .card {
    padding: 15px;
  }
  
  .value {
    font-size: 24px;
  }
  
  .traffic-chart {
    height: 120px;
  }
  
  .bar {
    width: 30px;
  }
}
