/* Custom CSS for ContabilidadSimple */
/* Add any additional custom styles here */

/* make navbar buttons (Inicio and profile dropdown) the same height */
.navbar .nav-btn {
    /* force same height even if icons differ */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ensure dropdown menu is wide enough for longer text */
.navbar .dropdown-menu {
    min-width: 280px; /* increased base width */
    white-space: nowrap; /* prevent text from breaking onto multiple lines */
}

/* on extra-large screens give even more room */
@media (min-width: 1200px) {
    .navbar .dropdown-menu {
        min-width: 320px;
    }
}

