body { background: #fafafa; }
.table td, .table th { vertical-align: middle; }

.page-header {
  background: linear-gradient(135deg, rgba(13,110,253,0.10), rgba(25,135,84,0.08));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 18px 18px;
}

.metric-card {
  border-radius: 16px;
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,0.10);
  color: #0d6efd;
  font-size: 20px;
}

.empty-state {
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,0.18);
  padding: 18px;
  background: rgba(255,255,255,0.6);
  text-align: center;
}

.empty-state-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  font-size: 22px;
  margin-bottom: 8px;
}


/* Dashboard extras */
.chart-wrap {
  position: relative;
  height: 230px;
}

.dropzone {
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.65);
  padding: 18px;
  cursor: pointer;
  transition: all 160ms ease;
  user-select: none;
}

.dropzone.drag {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  background: rgba(13,110,253,0.06);
  border-color: rgba(13,110,253,0.55);
}

.dropzone.has-file {
  border-style: solid;
  border-color: rgba(25,135,84,0.45);
  background: rgba(25,135,84,0.06);
}

.dropzone-inner {
  text-align: center;
}

.dropzone-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  font-size: 22px;
  margin-bottom: 8px;
}


/* Auth (login) page */
.auth-bg {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(13,110,253,0.35), transparent 60%),
              radial-gradient(900px 500px at 85% 30%, rgba(25,135,84,0.28), transparent 55%),
              linear-gradient(180deg, #0b1220 0%, #070b13 100%);
  min-height: 100vh;
}

.auth-wrapper { min-height: 100vh; }

.auth-container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.auth-hero {
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.auth-hero:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 300px at 25% 15%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events: none;
}

.auth-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 26px;
  border: 1px solid rgba(255,255,255,0.16);
}

.auth-mark-sm {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 24px;
}

.auth-feature {
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.auth-card {
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}

.auth-card-body {
  padding: 26px;
}

.auth-footer { opacity: 0.9; }
