:root {
  --primary: #c5a059;
  --secondary: #1a1a1a;
  --bg-body: #f8f9fa;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-body);
  color: var(--secondary);
}

.sidebar {
  background-color: #1a1a1a !important;
  color: white;
  min-height: 100vh;
  padding: 2rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  color: white;
  background-color: var(--primary);
}

.main-content {
  padding: 2rem;
}

.nav-pills .nav-link {
  color: #6c757d;
  background: none;
  border: none;
}

.nav-pills .nav-link.active {
  color: var(--primary);
  background: none;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
}

.metric-card-top {
  border-radius: 10px;
  color: white;
  padding: 15px;
  text-align: center;
  min-width: 150px;
}

.bg-insta-blue {
  background-color: #6395b0;
}
.bg-insta-green {
  background-color: #a8d0c0;
}
.bg-insta-orange {
  background-color: #e6a73e;
}

.bottom-metric-card {
  background: #f1f3f4;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.bottom-metric-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #5f6368;
}

.bottom-metric-label {
  font-size: 0.8rem;
  color: #5f6368;
  text-transform: capitalize;
}

.chart-main-container {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.overlay-metrics {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.location-selector {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
}
