/**
 * Nombre: home_header.css
 * Ruta: /catalogo_mtr/xr_ast/css/
 * Versión: v1.0.0
 * Descripción: Estilo del header en la home. Ajusta tamaño del logo y alineación del botón "Entrar".
 * Dependencias: Ninguna directa (cargado por main.php cuando $uri === '/').
 * Notas: Sin !important; usa unidades flexibles.
 */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.site-header .brand-logo {
  width: 120px;
  height: auto;
  max-height: 60px;
}

.site-header .site-actions form {
  display: inline;
}

.site-header .btn.btn-ghost {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.site-header .btn.btn-ghost:hover {
  background: #f2f2f2;
}
