/* Main navbar */
.navbar-modern {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* Brand */
.navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 0.3px;
}

.brand-accent {
    color: #38bdf8;
}

/* Links */
.navbar-modern .nav-link {
    color: #cbd5e1;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.navbar-modern .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

/* Active link (optional if you add active class) */
.navbar-modern .nav-link.active {
    background: rgba(56,189,248,0.2);
    color: #38bdf8;
}

/* Admin highlight */
.admin-link {
    color: #facc15 !important;
}

/* User badge */
.user-pill {
    background: rgba(255,255,255,0.1);
    color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Buttons */
.btn-primary {
    background: #38bdf8;
    border: none;
}

.btn-primary:hover {
    background: #0ea5e9;
}

.btn-outline-light:hover {
    color: #0f172a;
}

.container-fluid a img{
    width: 50px;
    height: 50px;
}

/*FOOTER*/
.site-footer{
  margin-top: 24px;
  border-top: 1px solid rgba(11,81,157,.18);
  background: linear-gradient(
    90deg,
    rgba(11,81,157,.08),
    rgba(27,126,233,.06)
  );
  box-shadow: 0 -12px 30px rgba(10,25,55,.08);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.footer-left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--brand2), var(--brand));
  box-shadow: 0 0 0 4px rgba(27,126,233,.10);
}

.site-footer a{
  color: var(--brand3);
  text-decoration: none;
}
.site-footer a:hover{
  color: var(--brand);
  text-decoration: underline;
}

.site-footer .sep{
  opacity: .6;
}

@media (max-width: 640px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
