z/* src/styles/Navbar.css */ .navbar { display: flex; justify-content: space-between; align-items: center; background-color: #4a0d0d; /* MarrĂ³n oscuro */ padding: 12px 20px; color: white; } .navbar__brand { font-size: 1.2rem; font-weight: bold; } .navbar__nav { display: flex; gap: 15px; } .nav__link { color: white; text-decoration: none; font-size: 0.95rem; } .nav__link.active { border-bottom: 2px solid #f8d47b; /* Amarillo suave */ } .navbar__actions { display: flex; gap: 10px; } .btn { padding: 6px 12px; border: none; border-radius: 6px; cursor: pointer; font-size: 0.9rem; } .btn--primary { background-color: #f8d47b; /* Amarillo */ color: #4a0d0d; } .btn--secondary { background-color: #ddd; color: #333; }