Diferencia entre revisiones de «MediaWiki:Common.css»

De Oroza RO Wiki
Ir a la navegación Ir a la búsqueda
Sin resumen de edición
Etiqueta: Revertido
Sin resumen de edición
Etiqueta: Revertido
Línea 3: Línea 3:
   ========================================= */
   ========================================= */
:root {
:root {
  /* Paleta de colores */
   --bg-body: #f4f6f9;  
   --bg-body: #f4f6f9;  
   --bg-content: #ffffff;
   --bg-content: #ffffff;
Línea 9: Línea 8:
   --text-muted: #64748b;
   --text-muted: #64748b;
    
    
   --primary: #2b4a6d; /* Azul principal */
   --primary: #2b4a6d;  
   --primary-dark: #1e324f;
   --primary-dark: #1e324f;
   --accent: #ffb400; /* Dorado Oroza */
   --accent: #ffb400;  
   --accent-light: #fff8e6; /* Dorado muy suave para fondos */
   --accent-light: #fff8e6;  
   --accent-hover: #e6a200;
   --accent-hover: #e6a200;
    
    
Línea 27: Línea 26:
   --success-border: #22c55e;
   --success-border: #22c55e;


   /* Bordes Suaves (Modernos y amigables) */
   /* Bordes y Sombras */
   --radius-sm: 8px;
   --radius-sm: 8px;
   --radius-md: 14px;
   --radius-md: 14px;
   --radius-lg: 20px;
   --radius-lg: 20px;
  /* Sombras Modernas */
   --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
   --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
   --shadow-md: 0 6px 12px rgba(0,0,0,0.06);
   --shadow-md: 0 6px 12px rgba(0,0,0,0.06);
   --shadow-float: 0 10px 25px rgba(43, 74, 109, 0.1); /* Sombra con un ligero tono azul */
   --shadow-float: 0 10px 25px rgba(43, 74, 109, 0.1);
 
  /* Densidad Media */
  --pad-sm: 12px;
  --pad-md: 20px;
  --pad-lg: 32px;


   font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
   font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}
}


Línea 48: Línea 40:
body {
body {
   background-color: var(--bg-body);
   background-color: var(--bg-body);
  font-family: var(--font-family);
   color: var(--text-main);
   color: var(--text-main);
   line-height: 1.6;
   line-height: 1.6;
Línea 55: Línea 48:
#content {
#content {
   background-color: var(--bg-content);
   background-color: var(--bg-content);
   padding: var(--pad-lg);
   padding: 30px;
   margin: 30px auto;
   margin: 20px auto;
   border-radius: var(--radius-lg); /* Borde bien redondeado */
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-float);
   box-shadow: var(--shadow-float);
   max-width: 1200px;
   max-width: 1200px;
}
/* === Título de página === */
.firstHeading {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.firstHeading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 4px;
}
/* === Tabla de contenido === */
#toc {
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
}


Línea 66: Línea 88:
   color: var(--link);
   color: var(--link);
   text-decoration: none;
   text-decoration: none;
  font-weight: 500;
   transition: color 0.2s ease;
   transition: color 0.2s ease;
}
}
a:hover {
a:hover {
   color: var(--accent); /* Al pasar el mouse, brillan en dorado */
   color: var(--accent);
   text-decoration: none;
   text-decoration: underline;
}
.mw-body a {
  color: var(--link);
  font-weight: 500;
}
}


/* === Encabezados con detalles dorados === */
/* === Encabezados jerárquicos mejorados === */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
   font-weight: 700;
   font-weight: 700;
  text-align: center;
   color: var(--primary);
   color: var(--primary);
   margin-top: 1.8em;
   margin-top: 40px;
   margin-bottom: 0.8em;
   margin-bottom: 30px;
   line-height: 1.3;
   line-height: 1.3;
   border-bottom: none;  
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.04);
   border-bottom: none;
   background: none !important;
   background: none !important;
}
}


h1.firstHeading, h1 {  
h1 { font-size: 2.8rem; }
h2 {  
   font-size: 2.5rem;  
   font-size: 2.5rem;  
  margin-top: 0;
  position: relative;
  padding-bottom: 10px;
}
/* Línea dorada decorativa debajo del título principal */
h1.firstHeading::after, h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 4px;
}
h2 {
  font-size: 1.8rem;
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
  justify-content: center;
   gap: 10px;
   gap: 10px;
}
}
/* Punto dorado al lado de los H2 para un toque premium */
h2::before {
h2::before {
   content: '';
   content: '';
Línea 120: Línea 129:
   border-radius: 50%;
   border-radius: 50%;
}
}
h3 { font-size: 2.3rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; color: var(--text-muted); }


/* === Tabla de contenido (TOC) === */
/* === Botones con íconos === */
#toc {
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  padding: var(--pad-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  min-width: 250px;
}
#toc h2 {
  font-size: 1.2rem;
  margin-top: 0;
}
#toc h2::before { display: none; } /* Quitamos el punto dorado aquí */
 
/* === Botones === */
.button-icon {
.button-icon {
   display: inline-flex;
   display: inline-flex;
Línea 144: Línea 141:
   background: var(--primary);
   background: var(--primary);
   color: white !important;
   color: white !important;
   padding: 10px 20px;
   padding: 10px 18px;
   border-radius: var(--radius-md);
   border-radius: var(--radius-md);
   text-decoration: none;
   text-decoration: none;
Línea 154: Línea 151:
.button-icon:hover {
.button-icon:hover {
   background: var(--primary-dark);
   background: var(--primary-dark);
   border-color: var(--accent); /* Borde dorado al pasar el mouse */
   border-color: var(--accent);
   transform: translateY(-2px);
   transform: translateY(-2px);
   box-shadow: var(--shadow-md);
   text-decoration: none;
}
.button-icon::before {
  content: '🔹';
}
}


/* === Cajas informativas === */
/* === Cajas informativas === */
.box-info, .box-warning, .box-tip {
  padding: var(--pad-md);
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.box-info {
.box-info {
   background: var(--info-bg);
   background: var(--info-bg);
   border-left: 5px solid var(--info-border);
   border-left: 5px solid var(--info-border);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
}
.box-warning {
.box-warning {
   background: var(--warning-bg);
   background: var(--warning-bg);
   border-left: 5px solid var(--warning-border);
   border-left: 5px solid var(--warning-border);
   color: #78350f;  
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
   color: #78350f;
  box-shadow: var(--shadow-sm);
}
}
.box-tip {
.box-tip {
   background: var(--success-bg);
   background: var(--success-bg);
   border-left: 5px solid var(--success-border);
   border-left: 5px solid var(--success-border);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
/* === Listas === */
ul, ol {
  padding-left: 40px;
  margin-bottom: 20px;
}
}


/* === Navbar Horizontal === */
/* === Navbar horizontal (TU ESTRUCTURA ORIGINAL) === */
.oroza-navbar {
.oroza-navbar {
   background: var(--primary);
   background: var(--primary);
   padding: 0 var(--pad-lg);
   padding: 15px 25px;
  height: 70px;
   display: flex;
   display: flex;
  gap: 30px;
   justify-content: center;
   justify-content: center;
   align-items: center;
   align-items: center;
  gap: 30px;
   font-weight: bold;
   font-weight: 600;
   border-bottom: 4px solid var(--accent);
   border-bottom: 4px solid var(--accent);
   border-radius: var(--radius-md);
   border-radius: var(--radius-md);
Línea 196: Línea 206:
   margin: 20px auto;
   margin: 20px auto;
   max-width: 1200px;
   max-width: 1200px;
  position: relative;
}
}
.oroza-navbar a {
.oroza-navbar a {
   color: rgba(255, 255, 255, 0.9) !important;
   color: white !important;
   font-size: 15px;
  text-decoration: none;
   font-size: 16px;
   padding: 8px 12px;
   padding: 8px 12px;
   border-radius: var(--radius-sm);
   border-radius: var(--radius-sm);
Línea 207: Línea 219:
   background-color: rgba(255, 255, 255, 0.1);
   background-color: rgba(255, 255, 255, 0.1);
   color: var(--accent) !important;
   color: var(--accent) !important;
  text-decoration: none;
}
.oroza-navbar-logo {
  position: absolute;
  left: 25px;
  display: flex;
  align-items: center;
}
.oroza-navbar-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.8));
}
}


/* === Tablas de Datos (Densidad Media) === */
/* === Sidebar lateral personalizada (TU ESTRUCTURA ORIGINAL) === */
.oroza-sidebar {
  background: var(--bg-content);
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  width: 240px;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.oroza-sidebar .menu-title {
  font-weight: bold;
  color: var(--primary);
  font-size: 17px;
  margin: 20px 0 12px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}
.oroza-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.oroza-sidebar li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oroza-sidebar li::before {
  display: inline-block;
  margin-right: 3px;
}
 
/* === Tablas personalizadas (oroza-table) === */
.oroza-table {
.oroza-table {
   width: 100%;
   width: 100%;
Línea 215: Línea 274:
   border-spacing: 0;
   border-spacing: 0;
   margin: 24px 0;
   margin: 24px 0;
   font-size: 0.95rem;
   font-size: 14px;
   background-color: var(--bg-content);
   background-color: var(--bg-content);
  box-shadow: var(--shadow-sm);
   border-radius: var(--radius-md);
   border-radius: var(--radius-md);
   overflow: hidden; /* Esto asegura que los bordes redondeados se apliquen */
   overflow: hidden;
   border: 1px solid var(--border-color);
   border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
}
.oroza-table thead {
.oroza-table thead {
Línea 227: Línea 286:
.oroza-table th {
.oroza-table th {
   color: var(--primary);
   color: var(--primary);
   font-weight: 700;
   font-weight: bold;
   font-size: 0.9rem;
   text-align: left;
   padding: 16px var(--pad-md); /* Densidad media */
   padding: 16px 20px;
   border-bottom: 2px solid var(--border-color);
   border-bottom: 2px solid var(--border-color);
}
}
.oroza-table td {
.oroza-table td {
   padding: 14px var(--pad-md); /* Densidad media */
   padding: 14px 20px;
   border-bottom: 1px solid var(--border-color);
   border-bottom: 1px solid var(--border-color);
}
}
.oroza-table tbody tr:last-child td {
.oroza-table tbody tr:hover {
   border-bottom: none;
  background-color: var(--accent-light);
}
.oroza-table .highlight {
   color: var(--accent-hover);
  font-weight: bold;
}
}
.oroza-table tbody tr:hover {
.oroza-table .center-icon {
   background-color: var(--accent-light); /* Hover sutil en dorado */
   text-align: center;
  font-size: 18px;
}
}
 
.oroza-table .zeny {
/* Clases útiles */
  color: var(--success-border);
.oroza-table .highlight { color: var(--accent-hover); font-weight: bold; }
   font-weight: bold;
.oroza-table .zeny { color: var(--success-border); font-weight: 600; }
 
/* === Blockquotes === */
blockquote {
  margin: 24px 0;
  padding: 20px var(--pad-lg);
   font-style: italic;
  color: var(--text-main);
  background-color: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}
}
 
.oroza-table.auto-width {
/* === Badges (Etiquetas) === */
   width: auto !important;
.badge {
   max-width: 100%;
   display: inline-block;
   table-layout: auto !important;
   padding: 4px 10px;
   margin: 20px auto;
  font-size: 0.75rem;
   display: table;
   font-weight: 700;
   border-radius: 20px; /* Muy redondeado tipo "píldora" */
   text-transform: uppercase;
  letter-spacing: 0.5px;
}
}
.badge-gold { background: var(--accent-light); color: #92400e; border: 1px solid var(--accent); }
.badge-primary { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }


/* === Imágenes === */
/* === Imágenes === */
.zoom-img {
.zoom-img {
   transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
   border-radius: var(--radius-sm);
   border-radius: var(--radius-sm);
}
}
.zoom-img:hover {
.zoom-img:hover {
   transform: scale(1.05);
   transform: scale(1.05); /* Cambiado de 2 a 1.05 para no romper layout */
  z-index: 10;
   box-shadow: var(--shadow-md);
   box-shadow: var(--shadow-md);
}
}


img.round-fade {
img.round-fade {
  width: 55%;
   border-radius: var(--radius-lg);
   border-radius: var(--radius-lg);
  margin: 10px auto;
  display: block;
   box-shadow: var(--shadow-sm);
   box-shadow: var(--shadow-sm);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  opacity: 0.97;
}
}
img.round-fade:hover {
img.round-fade:hover {
   transform: scale(1.05);
   transform: scale(1.05); /* Cambiado de 1.3 a 1.05 para no romper layout */
  opacity: 1;
   box-shadow: var(--shadow-md);
   box-shadow: var(--shadow-md);
  opacity: 1;
}
}


/* === Responsive === */
/* === Eliminar menús de MediaWiki (TU ESTRUCTURA ORIGINAL) === */
#p-logo,
#footer,
#mw-panel {
  display: none !important;
}
.toggle-checkbox {
  display: none;
}
.toggle-label {
  display: none !important;
}
 
/* === Responsive (TU ESTRUCTURA ORIGINAL) === */
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
   #content { padding: var(--pad-md); }
   .oroza-flex-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .oroza-flex-wrapper > div {
    width: 100% !important;
  }
  .oroza-sidebar {
    width: 100% !important;
    margin-bottom: 20px;
    display: block !important;
  }
   .oroza-navbar {
   .oroza-navbar {
    height: auto;
     flex-direction: column;
     flex-direction: column;
     padding: var(--pad-md);
    align-items: center;
     gap: 10px;
     padding: 20px;
  }
  .oroza-navbar-logo {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }
  .oroza-navbar a {
     display: block;
    padding: 10px 0;
  }
  .toggle-label {
    display: none !important;
   }
   }
}
}

Revisión del 01:15 4 abr 2026

/* =========================================
   VARIABLES GLOBALES (Identidad Oroza)
   ========================================= */
:root {
  --bg-body: #f4f6f9; 
  --bg-content: #ffffff;
  --text-main: #334155; 
  --text-muted: #64748b;
  
  --primary: #2b4a6d; 
  --primary-dark: #1e324f;
  --accent: #ffb400; 
  --accent-light: #fff8e6; 
  --accent-hover: #e6a200;
  
  --link: #1e70bf;
  --link-hover: #155594;
  --border-color: #e2e8f0;

  /* Estados */
  --info-bg: #eff6ff;
  --info-border: #3b82f6;
  --warning-bg: var(--accent-light);
  --warning-border: var(--accent);
  --success-bg: #f0fdf4;
  --success-border: #22c55e;

  /* Bordes y Sombras */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 12px rgba(0,0,0,0.06);
  --shadow-float: 0 10px 25px rgba(43, 74, 109, 0.1);

  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

/* === Tipografía y fondo general === */
body {
  background-color: var(--bg-body);
  font-family: var(--font-family);
  color: var(--text-main);
  line-height: 1.6;
}

/* === Contenido principal === */
#content {
  background-color: var(--bg-content);
  padding: 30px;
  margin: 20px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  max-width: 1200px;
}

/* === Título de página === */
.firstHeading {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.firstHeading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 4px;
}

/* === Tabla de contenido === */
#toc {
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* === Enlaces === */
a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.mw-body a {
  color: var(--link);
  font-weight: 500;
}

/* === Encabezados jerárquicos mejorados === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.04);
  border-bottom: none;
  background: none !important;
}

h1 { font-size: 2.8rem; }
h2 { 
  font-size: 2.5rem; 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}
h3 { font-size: 2.3rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; color: var(--text-muted); }

/* === Botones con íconos === */
.button-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}
.button-icon:hover {
  background: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}
.button-icon::before {
  content: '🔹';
}

/* === Cajas informativas === */
.box-info {
  background: var(--info-bg);
  border-left: 5px solid var(--info-border);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.box-warning {
  background: var(--warning-bg);
  border-left: 5px solid var(--warning-border);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  color: #78350f;
  box-shadow: var(--shadow-sm);
}
.box-tip {
  background: var(--success-bg);
  border-left: 5px solid var(--success-border);
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}

/* === Listas === */
ul, ol {
  padding-left: 40px;
  margin-bottom: 20px;
}

/* === Navbar horizontal (TU ESTRUCTURA ORIGINAL) === */
.oroza-navbar {
  background: var(--primary);
  padding: 15px 25px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-bottom: 4px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 20px auto;
  max-width: 1200px;
  position: relative;
}
.oroza-navbar a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.oroza-navbar a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent) !important;
  text-decoration: none;
}
.oroza-navbar-logo {
  position: absolute;
  left: 25px;
  display: flex;
  align-items: center;
}
.oroza-navbar-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.8));
}

/* === Sidebar lateral personalizada (TU ESTRUCTURA ORIGINAL) === */
.oroza-sidebar {
  background: var(--bg-content);
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  width: 240px;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.oroza-sidebar .menu-title {
  font-weight: bold;
  color: var(--primary);
  font-size: 17px;
  margin: 20px 0 12px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}
.oroza-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.oroza-sidebar li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oroza-sidebar li::before {
  display: inline-block;
  margin-right: 3px;
}

/* === Tablas personalizadas (oroza-table) === */
.oroza-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 14px;
  background-color: var(--bg-content);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.oroza-table thead {
  background-color: var(--bg-body);
}
.oroza-table th {
  color: var(--primary);
  font-weight: bold;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 2px solid var(--border-color);
}
.oroza-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
}
.oroza-table tbody tr:hover {
  background-color: var(--accent-light);
}
.oroza-table .highlight {
  color: var(--accent-hover);
  font-weight: bold;
}
.oroza-table .center-icon {
  text-align: center;
  font-size: 18px;
}
.oroza-table .zeny {
  color: var(--success-border);
  font-weight: bold;
}
.oroza-table.auto-width {
  width: auto !important;
  max-width: 100%;
  table-layout: auto !important;
  margin: 20px auto;
  display: table;
}

/* === Imágenes === */
.zoom-img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  border-radius: var(--radius-sm);
}
.zoom-img:hover {
  transform: scale(1.05); /* Cambiado de 2 a 1.05 para no romper layout */
  z-index: 10;
  box-shadow: var(--shadow-md);
}

img.round-fade {
  width: 55%;
  border-radius: var(--radius-lg);
  margin: 10px auto;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  opacity: 0.97;
}
img.round-fade:hover {
  transform: scale(1.05); /* Cambiado de 1.3 a 1.05 para no romper layout */
  opacity: 1;
  box-shadow: var(--shadow-md);
}

/* === Eliminar menús de MediaWiki (TU ESTRUCTURA ORIGINAL) === */
#p-logo,
#footer,
#mw-panel {
  display: none !important;
}
.toggle-checkbox {
  display: none;
}
.toggle-label {
  display: none !important;
}

/* === Responsive (TU ESTRUCTURA ORIGINAL) === */
@media screen and (max-width: 768px) {
  .oroza-flex-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .oroza-flex-wrapper > div {
    width: 100% !important;
  }
  .oroza-sidebar {
    width: 100% !important;
    margin-bottom: 20px;
    display: block !important;
  }
  .oroza-navbar {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .oroza-navbar-logo {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }
  .oroza-navbar a {
    display: block;
    padding: 10px 0;
  }
  .toggle-label {
    display: none !important;
  }
}