/* 🎂 Birthday Dashboard Styles */
.dashboard-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.dashboard-card h3 {
  color: #FF6B00;
  margin-bottom: 10px;
}
.dashboard-card .entry {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard-card .entry img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
}
.dashboard-card .entry .name {
  font-weight: bold;
  color: #0d1b2a;
}
.dashboard-card .entry .meta {
  color: #6c757d;
  font-size: 14px;
}

/* 📊 KPI Report Styles */
.kpi-date-form {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.kpi-date-form label {
  font-weight: bold;
  color: #0d1b2a;
}
.kpi-date-form input[type="date"] {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}
.kpi-date-form button {
  padding: 6px 12px;
  background-color: #FF6B00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.kpi-date-form button:hover {
  background-color: #e65c00;
}

.kpi-location-header {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #0d1b2a;
  border-bottom: 2px solid #FF6B00;
  padding-bottom: 5px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 15px;
}
.kpi-box {
  background-color: #e9ecef;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  color: #0d1b2a;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.kpi-box:hover {
  transform: scale(1.03);
}
.kpi-box strong {
  color: #FF6B00;
  display: block;
  margin-bottom: 5px;
}
