/* ===== NEON BLUE FORCE THEME ===== */

*{
  box-sizing:border-box;
}

html, body{
  margin:0;
  padding:0;
  background:radial-gradient(circle at top,#0f172a,#020617) !important;
  color:#e5e7eb !important;
}

/* alles wat wit kan zijn */
div, section, main, article, header, footer, nav{
  background-color: transparent !important;
}

/* cards */
.card,
.login-card,
.neon-card,
.request-card,
[class*="card"]{
  background:linear-gradient(160deg,#0f172a,#020617) !important;
  color:#e5e7eb !important;
  border-radius:22px !important;
  box-shadow:
    0 0 40px rgba(56,189,248,.5),
    inset 0 0 0 1px rgba(255,255,255,.05) !important;
}

/* titels */
h1,h2,h3,h4,h5,h6{
  color:#38bdf8 !important;
  text-shadow:0 0 16px rgba(56,189,248,.9) !important;
}

/* tekst */
p, span, label{
  color:#e5e7eb !important;
}

/* inputs */
input, textarea, select{
  background:#020617 !important;
  color:#ffffff !important;
  border:1px solid rgba(56,189,248,.7) !important;
  box-shadow:0 0 16px rgba(56,189,248,.4) !important;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8 !important;
}

/* buttons */
button,
.btn{
  background:#020617 !important;
  color:#38bdf8 !important;
  border:2px solid #38bdf8 !important;
  box-shadow:
    0 0 18px #38bdf8,
    inset 0 0 18px rgba(56,189,248,.5) !important;
}

button:hover,
.btn:hover{
  background:#38bdf8 !important;
  color:#020617 !important;
  box-shadow:
    0 0 45px #38bdf8,
    0 0 100px #38bdf8 !important;
}

/* danger */
.btn.reject{
  border-color:#ef4444 !important;
  color:#ef4444 !important;
  box-shadow:0 0 18px rgba(239,68,68,.8) !important;
}

/* logo & dj foto */
.logo,
.login-logo,
.dj-photo{
  box-shadow:0 0 25px #38bdf8 !important;
}

/* containers transparant */
.container,
.login-page,
.neon-login,
.neon-request-page{
  background:transparent !important;
}

/* ===== FORCE NEON FOR ADMIN & DJ DASHBOARD ===== */

/* dashboard wrappers */
.container,
.grid,
.dashboard,
.admin-dashboard,
.dj-dashboard{
  background:transparent !important;
}

/* dashboard cards */
.container .card,
.grid .card,
.dashboard .card,
.admin-dashboard .card,
.dj-dashboard .card{
  background:linear-gradient(160deg,#0f172a,#020617) !important;
  color:#e5e7eb !important;
  border-radius:22px !important;
  box-shadow:
    0 0 40px rgba(56,189,248,.55),
    inset 0 0 0 1px rgba(255,255,255,.06) !important;
}

/* stats cards / small cards */
.grid > div,
.container > div{
  background:linear-gradient(160deg,#0f172a,#020617) !important;
}

/* header bar */
header{
  background:linear-gradient(180deg,#0f172a,#020617) !important;
  box-shadow:0 0 35px rgba(56,189,248,.6) !important;
}

/* admin / dj text */
header h1,
header h2,
.container h2{
  color:#38bdf8 !important;
  text-shadow:0 0 14px rgba(56,189,248,.9) !important;
}

/* tables (als je die hebt) */
table,
th,
td{
  background:#020617 !important;
  color:#e5e7eb !important;
  border-color:rgba(56,189,248,.4) !important;
}

/* ===== RESTORE DASHBOARD LAYOUT ===== */

/* algemene containers */
.container{
  display:block !important;
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}

/* GRID HERSTEL */
.grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap:20px !important;
}

/* cards in grid */
.grid > .card{
  width:100% !important;
}

/* header layout */
header{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:15px 20px;
}

/* header links rechts */
.header-right,
header > div:last-child{
  display:flex !important;
  align-items:center;
  gap:10px;
}

/* DJ / ADMIN actie knoppen */
.actions{
  display:flex !important;
  flex-direction:column;
  gap:8px;
}

/* DJ beheer cards */
.card img{
  display:block;
  margin-bottom:10px;
}

/* ===== NEON LIVE BADGE ===== */

.live-badge{
  display:inline-block;
  margin-left:8px;
  padding:4px 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  color:#020617;
  background:#38bdf8;
  border-radius:999px;
  box-shadow:
    0 0 8px #38bdf8,
    0 0 20px #38bdf8;
  animation:livePulse 1.6s infinite;
}

/* pulse animatie */
@keyframes livePulse{
  0%{
    box-shadow:
      0 0 6px #38bdf8,
      0 0 14px #38bdf8;
    opacity:1;
  }
  50%{
    box-shadow:
      0 0 14px #38bdf8,
      0 0 40px #38bdf8;
    opacity:.85;
  }
  100%{
    box-shadow:
      0 0 6px #38bdf8,
      0 0 14px #38bdf8;
    opacity:1;
  }

 /* ===== LIVE BADGE MET MICROFOON ===== */

.live-badge.mic{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left:10px;
  padding:5px 12px;
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
  color:#020617;
  background:#38bdf8;
  border-radius:999px;
  box-shadow:
    0 0 10px #38bdf8,
    0 0 25px #38bdf8;
  animation:micPulse 1.4s infinite;
}

/* pulse + mic effect */
@keyframes micPulse{
  0%{
    box-shadow:
      0 0 8px #38bdf8,
      0 0 18px #38bdf8;
    transform:scale(1);
  }
  50%{
    box-shadow:
      0 0 18px #38bdf8,
      0 0 45px #38bdf8;
    transform:scale(1.05);
  }
  100%{
    box-shadow:
      0 0 8px #38bdf8,
      0 0 18px #38bdf8;
    transform:scale(1);
  }

  /* ===== NEON SUCCESS MESSAGE ===== */

.neon-success{
  margin-top:15px;
  padding:12px;
  border-radius:16px;
  background:#020617;
  color:#22c55e;
  font-weight:700;
  text-align:center;
  box-shadow:
    0 0 15px rgba(34,197,94,.8),
    inset 0 0 15px rgba(34,197,94,.3);
  animation:fadePop .4s ease;
}

@keyframes fadePop{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

/* ===== NIEUW VERZOEK ANIMATIE ===== */
.new-request{
  animation:neonPop .6s ease;
}

@keyframes neonPop{
  from{
    transform:scale(.95);
    box-shadow:0 0 0 transparent;
  }
  to{
    transform:scale(1);
    box-shadow:0 0 40px rgba(56,189,248,.9);
  }

  /* ===== IFRAME OPTIMALISATIE ===== */

html, body{
  overflow:hidden;
}

.neon-request-page{
  padding:10px;
}

.neon-request-card{
  margin:0;
}

.neon-sound-unlock{
  margin-bottom:15px;
  padding:12px;
  text-align:center;
  border-radius:16px;
  cursor:pointer;
  font-weight:700;
  color:#38bdf8;
  border:2px solid #38bdf8;
  box-shadow:0 0 25px rgba(56,189,248,.6);
  animation:pulseGlow 2s infinite;
}

.neon-sound-unlock:hover{
  background:#38bdf8;
  color:#020617;
}
 
 /* ===== ADMIN DASHBOARD WIDGETS ===== */

.admin-widgets{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-bottom:30px;
}

/* DJ info netjes naast elkaar */
.widget-dj{
  display:flex;
  align-items:center;
  gap:14px;
}

.widget-dj .dj-photo,
.widget-dj .dj-placeholder{
  width:64px;
  height:64px;
  border-radius:50%;
  flex-shrink:0;
}

.widget-dj .dj-photo{
  object-fit:cover;
}

/* ===== FORCE ADMIN WIDGET LAYOUT ===== */

.admin-widgets{
  display:flex !important;
  gap:24px;
  margin-bottom:30px;
}

.admin-widgets > .widget{
  flex:1;
  min-width:260px;
}

.widget-dj{
  display:flex;
  align-items:center;
  gap:14px;
}


.rs-footer{
  margin-top:40px;
  padding:14px;
  text-align:center;
  color:#9bdcff;
  font-size:12px;
  opacity:.85;
}

/* ============================= */
/* VERZOEKFORMULIER LAYOUT */
/* ============================= */

.neon-request-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.neon-request-card{
  width:100%;
  max-width:480px;
  padding:30px;
  text-align:center;
}

/* formulier */
.neon-form{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:20px;
}

/* input + textarea */
.neon-form input,
.neon-form textarea{
  width:100%;
  padding:16px 18px;
  font-size:16px;
  border-radius:14px;
  background:#020617;
  color:#e0f2fe;
  border:1px solid rgba(56,189,248,.4);
  outline:none;
  box-shadow:0 0 14px rgba(56,189,248,.15);
  transition:.25s ease;
}

.neon-form textarea{
  min-height:120px;
  resize:vertical;
}

/* focus glow */
.neon-form input:focus,
.neon-form textarea:focus{
  border-color:#38bdf8;
  box-shadow:0 0 20px rgba(56,189,248,.6);
}

/* placeholder kleur */
.neon-form ::placeholder{
  color:#7dd3fc;
}

/* knop */
.neon-btn{
  margin-top:10px;
  padding:16px;
  font-size:17px;
  border-radius:16px;
}

/* ========================================= */
/* FORCE VERZOEKFORMULIER LAYOUT */
/* ========================================= */

.neon-form{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:18px !important;
  width:100% !important;
  max-width:100% !important;
}

/* inputs & textarea */
.neon-form input,
.neon-form textarea{
  display:block !important;
  width:100% !important;
  box-sizing:border-box !important;
  padding:18px 20px !important;
  font-size:17px !important;
  min-height:56px !important;

  border-radius:16px !important;
  background:#020617 !important;
  color:#e0f2fe !important;
  border:2px solid rgba(56,189,248,.6) !important;

  box-shadow:0 0 20px rgba(56,189,248,.35) !important;
}

/* textarea groter */
.neon-form textarea{
  min-height:140px !important;
  resize:vertical !important;
}

/* knop */
.neon-form button,
.neon-btn{
  margin-top:10px !important;
  padding:18px !important;
  font-size:18px !important;
  border-radius:18px !important;
  width:100% !important;
}

.neon-request-page{
  min-height:100vh;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:20px !important;
}

.neon-request-card{
  width:100% !important;
  max-width:480px !important;
}


