/* style/nominate.css */

.page-glow{
  pointer-events:none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 450px at 65% 0%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(900px 450px at 25% 100%, rgba(245,158,11,.10), transparent 60%);
  z-index: 0;
}
/* Keep normal page layers above glow, but DO NOT touch modals */
body > *:not(.page-glow):not(.kfx-modal-backdrop){
  position: relative;
  z-index: 1;
}

/* Force modals to always overlay everything */
.kfx-modal-backdrop{
  position: fixed !important;
  inset: 0;
  z-index: 9999 !important;
}
.pad{ padding: 18px; }

.title{ margin: 0; font-size: 26px; font-weight: 900; }
.subtitle{ margin: 8px 0 0; color: rgba(255,255,255,.70); font-size: 14px; line-height: 1.6; }

.form{ margin-top: 12px; }

.sec{
  margin: 14px 0 10px;
  font-size: 15px;
  font-weight: 900;
  color: rgba(252,211,77,.95);
}

.file-list{
  margin-top: 8px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.file-pill{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

.actions{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.status{
  font-size: 13px;
  color: rgba(255,255,255,.70);
}
.status.ok{ color: rgba(34,197,94,.95); }
.status.err{ color: rgba(239,68,68,.95); }


/* Ensure dropdown list items are readable */
.select option{ background:#0b0b0b; color:#fff; }

/* Primary CTA button for submit */
.btn-submit{
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 950;
  border: 1px solid rgba(245,158,11,.30);
  background: linear-gradient(180deg, rgba(252,211,77,.95), rgba(245,158,11,.95));
  color: #111;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transition: transform .08s ease, filter .12s ease, opacity .12s ease;
}

.btn-submit:hover{ filter: brightness(1.03); }
.btn-submit:active{ transform: translateY(1px); }

/* When nomination window is closed, your JS adds this class */
.kfx-disabled{
  opacity: .55 !important;
  cursor: not-allowed !important;
  filter: grayscale(1) !important;
}

/* Nice mobile layout: full-width submit */
@media (max-width: 640px){
  .actions{ flex-direction: column; align-items: stretch; }
  .btn-submit{ width: 100%; }
}
