.eafe-dashboard-wrap {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.eafe-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.eafe-section h2 {
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.eafe-widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eafe-widget-item {
  background: #f6f7f7;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eafe-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.eafe-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 22px;
}
.slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
.eafe-switch input:checked + .slider {
  background-color: #0073aa;
}
.eafe-switch input:checked + .slider:before {
  transform: translateX(18px);
}

.eafe-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.eafe-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
}
.eafe-card h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}
.eafe-card p {
  font-size: 22px;
  font-weight: 600;
  color: #2271b1;
}
