
/* Botones de navegación */

.nav-bar {

    background-color: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between; /* Alinea los botones a los extremos */
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid var(--gray);

    .nav-button {
        padding: 5px 10px;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        color: var(--black-0);
        width: 100%;
        height: 60px;
        margin: 0;
        cursor: pointer;
        text-decoration: none; /* Removes underline by default */
        text-align: center;
        font-size: 16px;
        align-content: center;
    }
    
    .nav-button a {
        text-decoration: none; /* Removes underline on the anchor tag */
        color: inherit; /* Ensures the anchor tag inherits the color from nav-button */
    }
    
    .nav-button i {
        text-decoration: none; /* Ensures no underline on the icon */
        color: var(--black-0); /* Default color for the icon */
    }
    
    .nav-button:hover {
        text-decoration: none; /* Ensures no underline on hover */
    }
    
    .nav-button:hover i {
        color: var(--orange-3); /* Changes icon color on hover */
    }
    
    .nav-button.actual {
        color: var(--black-0);
        background: var(--orange-0);
        font-weight: bold;
        border-bottom: 5px solid var(--orange-3);
    }
    
    .nav-button:not([href]) {
        cursor: not-allowed;
        color: var(--gray-disabled);
    }
    .nav-button[href]:hover {
        font-weight: bold;
    }
}


.top-bar {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-between;
    height: fit-content;
    padding: 0;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.top-bar h2 {
    max-width: 80%;
}
