/* ===================================================================
   Feria Agropecuaria San Pedro — hoja de estilos
   Paleta y tipografías tomadas del sitio original (verde institucional,
   lima, naranja y azul marino) para reproducir el mismo look & feel.
=================================================================== */

:root{
  --green-dark: #0B300E;
  --green-primary: #2C962D;
  --green-btn: #509733;
  --orange: #CC3300;
  --lime: #B6D115;
  --navy: #000066;
  --navy-2: #000042;
  --navy-3: #000055;
  --white: #FFFFFF;

  --font-heading: "Poppins", sans-serif;
  --font-body: "Noto Sans", sans-serif;

  --radius-pill: 30px;
  --container-width: 1140px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: #08210a;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ text-decoration: none; color: inherit; }

ul{ list-style: none; margin: 0; padding: 0; }

.container{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4{
  font-family: var(--font-heading);
  margin: 0;
}

.section-pad{ padding: 60px 24px; }

/* ---------- Botones ---------- */
.btn{
  display: inline-block;
  padding: 0.65em 1.6em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-2px); filter: brightness(1.08); }
.btn-green{ background: var(--green-btn); color: var(--white); }
.btn-orange{ background: var(--orange); color: var(--white); }
.btn-white{ background: var(--white); color: var(--navy); font-weight: 600; }

/* ---------- Splash screen ---------- */
.splash{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #123a17 0%, var(--green-dark) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}
.splash.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner{ text-align: center; }
.splash-logo{
  width: 220px;
  max-width: 55vw;
  margin: 0 auto;
  animation: splash-pulse 1.6s ease-in-out infinite;
}
.splash-loader{
  width: 34px;
  height: 34px;
  margin: 26px auto 0;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.22);
  border-top-color: var(--lime);
  animation: splash-spin .8s linear infinite;
}
@keyframes splash-pulse{
  0%, 100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.05); opacity: .85; }
}
@keyframes splash-spin{ to{ transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce){
  .splash-logo{ animation: none; }
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--green-dark);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-logo img{ height: 48px; width: auto; }

.main-nav ul{
  display: flex;
  gap: 28px;
}
.main-nav a{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--white);
  transition: color .2s ease;
}
.main-nav a:hover{ color: var(--lime); }

.header-actions{ display: flex; gap: 10px; align-items: center; }

.menu-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 880px){
  .menu-toggle{ display: block; }
  .main-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open{ max-height: 300px; }
  .main-nav ul{
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 16px;
  }
  .header-actions{ display: none; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background-image:
    radial-gradient(circle at center, rgba(2,1,1,0) 0%, var(--green-dark) 85%),
    url("../assets/img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.hero .container{
  padding-top: 70px;
  padding-bottom: 40px;
}
.hero-kicker{
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-title{
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 36px;
}
.hero-video{
  max-width: 700px;
  margin: 0 auto 40px;
}
.hero-video .ratio{
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.hero-video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.countdown-label{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}
.countdown{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.countdown-item{
  background: var(--white);
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 90px;
}
.countdown-digits{
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}
.countdown-caption{
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.hero-date, .hero-place{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-logo{
  max-width: 420px;
  margin: 30px auto;
}
.hero-desc{
  max-width: 740px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
}

/* Cuadro elegante para textos que pierden contraste sobre la foto de fondo */
.text-card{
  background: rgba(8, 33, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px 32px;
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
}

/* ---------- Carrusel ---------- */
.gallery-heading{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 50px 0 26px;
}
.carousel{
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-track-wrap{
  overflow: hidden;
}
.carousel-track{
  display: flex;
  transition: transform .5s ease;
}
/* Muestra 3 fotos por vista en escritorio, 2 en tablet, 1 en mobile
   (ver --items-per-view, calculado en js/main.js) */
.carousel-slide{
  flex: 0 0 calc(100% / var(--items-per-view, 3));
  box-sizing: border-box;
  padding: 0 8px;
}
.carousel-slide-inner{
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  color: var(--green-dark);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.carousel-arrow:hover{ background: var(--white); }
.carousel-arrow.prev{ left: 6px; }
.carousel-arrow.next{ right: 6px; }
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.carousel-dots button{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active{ background: var(--lime); }

/* ---------- Stats ---------- */
.stats{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin: 60px 0 40px;
  text-align: center;
}
.stat-label{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 4px;
}
.stat-number{
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--lime);
  font-size: 32px;
}
.stat-caption{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  margin-top: 4px;
}

.cta-row{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-para{
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Sponsors ---------- */
.sponsors{
  background: var(--white);
  text-align: center;
}
.sponsors h2{
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 40px;
}
.sponsor-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 36px;
}
.sponsor-row:last-child{ margin-bottom: 0; }
.sponsor-row img{ width: auto; object-fit: contain; }

/* Tiers: respetan la jerarquía de auspiciantes del sitio original */
.sponsor-lg{ max-height: 180px; max-width: 420px; }
.sponsor-md{ max-height: 100px; max-width: 260px; }
.sponsor-sm{ max-height: 70px; max-width: 170px; }

@media (max-width: 640px){
  .sponsor-row{ gap: 28px; }
  .sponsor-lg{ max-height: 120px; max-width: 260px; }
  .sponsor-md{ max-height: 72px; max-width: 180px; }
  .sponsor-sm{ max-height: 54px; max-width: 130px; }
}

/* ---------- Ubicación ---------- */
.location{
  background-image:
    radial-gradient(circle at center, rgba(2,1,1,0) 0%, var(--green-dark) 85%),
    url("../assets/img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.location h2{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.location .address{
  font-size: 16px;
  font-weight: 600;
  max-width: 740px;
  margin: 0 auto 30px;
}
.map-wrap{
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 40px;
}
.map-wrap iframe{ width: 100%; height: 380px; border: 0; display: block; }
.location .organizer-logo{
  max-width: 320px;
  margin: 0 auto;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--white);
  color: var(--navy-2);
  padding: 40px 24px;
}
.site-footer .container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.footer-isologo img{ max-width: 140px; margin: 0 auto; }
.footer-info{
  font-family: var(--font-heading);
  font-size: 16px;
  max-width: 320px;
}
.footer-contact{
  font-family: var(--font-heading);
  font-size: 16px;
  max-width: 340px;
}
.social-icons{
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-icons a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.social-icons a:hover{ background: var(--navy-2); color: var(--white); }
.social-icons svg{ width: 18px; height: 18px; fill: currentColor; }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  z-index: 600;
  transition: transform .2s ease;
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab svg{ width: 28px; height: 28px; fill: var(--white); }

/* ---------- Modales ---------- */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.open{ display: flex; }
.modal-box{
  background: var(--green-dark);
  border-radius: 30px;
  max-width: 640px;
  width: 100%;
  padding: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-box.form-box{ background: var(--navy-3); }
.modal-close{
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
.modal-box h3{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.modal-video-ratio{
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.modal-video-ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-cta{
  text-align: center;
  margin-bottom: 20px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full{ grid-column: 1 / -1; }
.form-grid input,
.form-grid textarea{
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(2,1,1,0.07);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--navy-2);
}
.form-grid textarea{ resize: vertical; min-height: 90px; }
.form-submit{
  grid-column: 1 / -1;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  margin-top: 6px;
  transition: filter .2s ease;
}
.form-submit:hover{ filter: brightness(1.1); }
.form-note{
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
  color: var(--lime);
  display: none;
}
.form-note.show{ display: block; }
.form-note.is-error{ color: #ff8a65; }
.form-submit:disabled{ opacity: .7; cursor: not-allowed; }

@media (max-width: 640px){
  .hero-title{ font-size: 34px; }
  .countdown-item{ min-width: 70px; padding: 10px 12px; }
  .countdown-digits{ font-size: 18px; }
  .stats{ gap: 30px; }
  .form-grid{ grid-template-columns: 1fr; }
  .sponsors h2{ font-size: 26px; }
}

/* ===================================================================
   Página de Expositores
=================================================================== */
.expo-hero{
  background-image:
    radial-gradient(circle at center, rgba(2,1,1,0) 0%, var(--green-dark) 85%),
    url("../assets/img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
}
.expo-title{
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.expo-sub{
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

.expo-controls{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.expo-search{
  width: 100%;
  max-width: 380px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(6px);
}
.expo-search::placeholder{ color: rgba(255,255,255,.65); }
.expo-search:focus{ border-color: var(--lime); background: rgba(255,255,255,.16); }

.expo-abc{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.expo-abc button{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.expo-abc button:hover{ border-color: var(--lime); color: var(--lime); }
.expo-abc button.active{ background: var(--lime); border-color: var(--lime); color: var(--green-dark); }

.expo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.expo-card{
  display: flex;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.expo-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.expo-card-logo{
  flex-shrink: 0;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f4;
  padding: 14px;
}
.expo-card-logo img{ max-width: 100%; max-height: 76px; object-fit: contain; }
.expo-card-logo-initial{
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #d5dcd6;
}
.expo-card-info{
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.expo-card-name{
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}
.expo-card-desc{
  font-family: var(--font-body);
  font-size: 13px;
  color: #5b675c;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.expo-card-links{
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid #e7ece7;
}
.expo-card-links a{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-btn);
}
.expo-card-links a:hover{ color: var(--green-dark); text-decoration: underline; }

.expo-empty, .expo-state{
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  display: none;
}
.expo-empty.show, .expo-state.show{ display: block; }

@media (max-width: 900px){
  .expo-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .expo-grid{ grid-template-columns: 1fr; }
  .expo-title{ font-size: 32px; }
  .expo-card{ flex-direction: column; }
  .expo-card-logo{ width: 100%; min-height: 90px; }
}

/* ===================================================================
   Panel de administración de expositores (protegido)
=================================================================== */
.admin-body{
  min-height: 100vh;
  background: var(--green-dark);
  font-family: var(--font-body);
}
.admin-lock{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-lock-box{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}
.admin-lock-box img{ height: 44px; margin: 0 auto 20px; }
.admin-lock-box h1{
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.admin-lock-box p{
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
  line-height: 1.6;
}
.admin-lock-box input{
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
}
.admin-lock-box input:focus{ border-color: var(--lime); }
.admin-error{
  color: #ff8a65;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}
.admin-error.show{ display: block; }

.admin-app{ display: none; padding: 30px 20px 80px; }
.admin-app.show{ display: block; }
.admin-wrap{ max-width: 1100px; margin: 0 auto; }
.admin-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.admin-top h1{
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--white);
}
.admin-top .btn{ font-size: 13px; }

.admin-note{
  background: rgba(182,209,21,.12);
  border: 1px solid rgba(182,209,21,.35);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
}
.admin-note strong{ color: var(--lime); }

.admin-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px){ .admin-grid{ grid-template-columns: 1fr; } }

.admin-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 22px;
}
.admin-card h2{
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}
.admin-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.admin-form .full{ grid-column: 1 / -1; }
.admin-form input, .admin-form textarea{
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.94);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--navy-2);
}
.admin-form textarea{ resize: vertical; min-height: 70px; }
.admin-form label{
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 4px;
}
.admin-form-actions{
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.admin-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 4px;
}
.admin-item{
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 12px;
}
.admin-item-logo{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.admin-item-logo img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.admin-item-name{
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-item-actions{ display: flex; gap: 6px; }
.admin-item-actions button{
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11px;
  cursor: pointer;
}
.admin-item-actions button:hover{ border-color: var(--lime); color: var(--lime); }
.admin-item-actions .danger:hover{ border-color: #ff8a65; color: #ff8a65; }
.admin-empty-list{
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 20px 0;
}
