/* === Reset básico === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

#logovet {
  position: fixed;
  top: 10px;
  left: 60px;
  z-index: -1;
}

#logovet img {
  max-width: 100%;
  height: auto;
  width: clamp(80px, 10vw,150px);
}

#logosys {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: -1;
}

#logosys img {
  max-width: 100%;
  height: auto;
  width: clamp(80px, 10vw,150px);
}

h1{
  text-align: center;
}

h2{
  text-align: center;
}

h4 {
  margin-top: 10px;
}
/* === Formulario === */
form {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input, select, textarea {
  width: 90%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin-top: 2rem;
  padding: 0.7rem 2rem;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

button#btnBorrar {
  margin-top: 2rem;
  padding: 0.7rem 2rem;
  background-color: #e74c3c; /* rojo intenso */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button#btnBorrar:hover {
  background-color: #ff6b6b;
}

/* === Utilidades === */
.oculto {
  display: none;
}

.visible {
  display: inline;
}

/* === Menú principal === */
.menu-principal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-principal > li {
  position: relative;
}

.menu-principal > li > span {
  font-weight: bold;
  cursor: pointer;
  display: block;
  padding: 0.5rem;
}

/* === Submenú === */
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f5f5f5;
  padding: 0.5rem;
  display: none;
}

.menu-principal > li:hover .submenu,
.submenu.visible {
  display: block;
}

.submenu li {
  margin: 0.5rem 0;
}

/* === Botón Hamburger === */
.menu-toggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle i {
  color: white;
  font-size: 1.5rem;
  pointer-events: none;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background-color: #34495e;
}

/* === Sidebar === */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #2c3e50;
  color: white;
  padding-top: 4rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.sidebar.visible {
  transform: translateX(0);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar a:hover {
  background-color: #34495e;
  border-radius: 4px;
  padding: 0.5rem;
}

/* === Main content === */
main {
  margin-left: 0;
  padding: 2rem;
  transition: margin-left 0.3s ease;
}

@media screen and (min-width: 768px) {
  .sidebar.visible + main {
    margin-left: 250px;
  }
}

@media screen and (max-width: 768px) {
  .menu-principal {
    flex-direction: column;
    gap: 1rem;
  }

  .submenu {
    position: static;
    background: #eee;
  }
}
.fondo {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('archivos/backgroung.jpg'); /* ← ajustá la ruta */
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  z-index: -1;
}
#tabla-container {
  overflow-x: auto;
  max-width: 100%;
}

table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;

}

th, td {
  padding: 6px 6px;
  border: 1px solid #ccc;
  white-space: nowrap;
}
tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.btn-atender {
  margin-top: 2rem;
  padding: 0.7rem 2rem;
  background-color: #2e7d32;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn-atender:hover {
  background-color: #1b5e20;
}
.btn-imprimir {
  margin-top: 2rem;
  padding: 0.7rem 2rem;
  background-color: #ddf053;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.btn-imprimir:hover {
  background-color: #d4a406;
}
#scanner-container {
  width: 100%;
  max-width: 300px;
  height: 200px;
  background: #000;
  position: relative;
  overflow: hidden;
}
/* Estilos para que el select de Raza y el botón estén en línea */
.raza-control {
    display: flex;
    align-items: center;
}

.raza-control select {
    flex-grow: 1; /* Hace que el select ocupe el espacio disponible */
    margin-right: 10px;
}

/* Estilos para el botón de abrir modal (el "➕") */
#btn_abrir_modal_raza {
    background-color: #f0fbf2; 
    color: white;
    border: none;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    margin-top: 0px;
}

/* Estilos básicos para el Modal (DIV Flotante) */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Posición fija en la pantalla */
    z-index: 1000; /* Alto índice Z para que esté sobre todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Habilitar scroll si el contenido es muy largo */
    background-color: rgba(0,0,0,0.4); /* Fondo semi-transparente negro */
}

/* Contenido del Modal */
.modal-contenido {
    background-color: #fefefe;
    margin: 5% auto; /* 10% desde arriba y centrado */
    padding: 5%;
    border: 1px solid #888;
    width: 80%; /* Ancho del modal */
    max-width: 600px; /* Ancho máximo para mejor visualización */
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    position: relative;
}

/* Botón de cerrar (la 'x') */
.cerrar-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.cerrar-modal:hover,
.cerrar-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Estilos para la tabla dentro del modal */
.tabla-razas-modal {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.9em;
}

.tabla-razas-modal th, 
.tabla-razas-modal td {
    padding: 1px 2px;
    border: 1px solid #ddd;
    text-align: left;
    line-height: 1.1;
    vertical-align: middle;
}

.tabla-razas-modal th {
    background-color: #f2f2f2;
    color: #333;
}

/* Columna de acciones (centrada si lo deseas) */
.tabla-razas-modal td:last-child {
    text-align: center;
    width: 80px; /* Ancho fijo para la columna de botones */
}

/* Estilo para los botones de acción dentro del modal */
.btn-accion-modal {
    border: none;
    padding: 0px 3px;
    font-size: 13px; /* Tamaño de fuente más pequeño */
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

/* Estilo específico para el botón de ELIMINAR (rojo) */
.btn-eliminar-raza {
    background-color: #dc3545; /* Rojo Bootstrap */
    color: white;
}

.btn-eliminar-raza:hover {
    background-color: #c82333; /* Rojo más oscuro al pasar el ratón */
}

.tabla-razas-modal * {
    margin-top: 1px;
    margin-bottom: 1px;
}

#form_nueva_raza {
    padding: 6px 6px;
    margin-top: 1px;
    margin-bottom: 1px;
}

#btn_guardar_raza {
  padding: 6px 6px;
  margin-top: 6px;
}

#nueva_raza_nombre {
  margin-top: 6px;
}