/* Starts Custom CSS for two-column dropdown */
.dropdown-column-wrapper {
    display: flex;
}


.dropdown-column {
    flex: 1;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.nav-link.dropdown-toggle {
    color: #ffffff !important; 
}

.nav-link.dropdown-toggle:hover {
    background-color: #0d6efd !important; 
    color: #ffffff !important; 
}

.navbar-dark .navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



.navbar-brand img { /* Custom CSS for the logo within the navbar */
    max-height: 110px; 
    width: auto; 
}


.dropdown-menu .dropdown-item:hover {
    background-color: #0d6efd; /* Blue background */
    color: #ffffff; /* White text */
}

.boton_cotizacion {
    background-color: #046aff;    
    color: #ffffff;
    border: none;   
    cursor: pointer;    
    transition: background-color 0.3s ease;
}

.boton_cotizacion:hover {
    background-color: #4b8ef0;
}


@media (max-width: 767px) { /* Reduce the logo size on smaller screens */
    .navbar-brand img {
        max-height: 50px; 
    }
}


@media (min-width: 992px) { /*Lg resolutions or larger media queries*/
    .navbar-brand {
        padding-right: 130px; 
    }
    .nav-item.dropdown:first-child .dropdown-menu {
        min-width: 30rem; /* This will now only apply on 'lg' screens and larger */
    }  
}

