/*CSS Global para todos los modulos*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}
/* CSS para el Navbar*/
.tabs-container {
   background-color: #ffffff;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 2px solid #e0e0e0;
    padding: 0 20px;
    height: 80px;
}

.tabs-logo {
    display: flex;
    align-items: center;
    gap: 10px; 
    font-weight: bold;
    color: #333;
}
.tabs-logo img {
    height: 60px; 
    width: auto;
}

.tabs-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.tab-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.tab-item a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: 0.3s;
}


.tab-item a:hover {
    background-color: #f1f4e8;
    color: #8ca331;
}

.tab-item.active a {
    color: white;
    border-bottom: 3px solid #8ca331;
    background-color: #8ca331;
    font-weight: bold;
}

/* Ajuste para móviles: permite scroll horizontal si hay muchas pestañas */
@media (max-width: 600px) {
    .tabs-list {
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* CSS para el Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

main {
    flex: 1;
}

.footer {
    background-color: #ffffff;
    color: #8ca331;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #e0e0e0; 
    font-size: 14px;
}

.footer .links {
    margin-top: 10px;
}

.footer .links a {
    color: #8ca331;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer .links a:hover {
    text-decoration: underline;
}