html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Área superior com botão à esquerda e form central */
.top-actions {
    position: sticky;
    top: 0;
    background: white;
    padding: 10px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #ddd;
}

    /* Empurra o botão para o início */
    .top-actions a {
        margin-right: auto;
    }

/* Limita a largura do form e centraliza */
.search-form {
    display: flex;
    width: 50%; /* ajuste se quiser mais largo */
}

.navbar-nav {
    background-color: #0b6623; /* Verde escuro elegante */
}

.nav-link {
    transition: 0.3s;
}

    .nav-link.hover-underline:hover {
        text-decoration: underline;
        transform: scale(1.05);
        color: #fff !important;
    }
