﻿.position-relative {
    position: relative;
}

.overlay-text {
    position: absolute;
    top: 50%; /* Centra verticalmente */
    left: 50%; /* Centra horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta el centro */
    color: white; /* Color del texto */
    text-align: center; /* Centra el texto */
    background-color: rgba(0, 0, 0, 0.0); /* Fondo semitransparente */
    padding: 20px; /* Espaciado interno */
    border-radius: 10px; /* Bordes redondeados */
}

.nav-tabs-container {
    display: flex;
    align-items: center;
}

.scroll-button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #007bff;
    cursor: pointer;
}

.nav-tabs-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.nav-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.nav-tabs .nav-item {
    margin-right: 10px;
}

.nav-tabs .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    color: dimgrey;
    font-weight: bold;
    background-color: white;
    padding: 10px 20px;
    white-space: nowrap;
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: rgb(245, 129, 32);
    border-color: rgb(245, 129, 32);
}

.tab-content {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 5px;
    margin-top: -1px;
}

.carousel-inner img {
    width: 100%;
    max-height: 670px;
    object-fit: contain;
}

.carousel-fade .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

@media (max-width: 991.98px) 
{
    .carousel-inner img {
        max-height: 300px;
    }
}
