label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

select {
    display: block;
    width: 40%;
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    appearance: none;
    margin-right: 40px;
}

button {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #007bff;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    max-width: 80%;
    margin-left: 20px;
}

button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

select, button {
    margin: 5px;
    flex: 0 0 auto;
}

select {
    max-width: 60%;
}


.container-busqueda {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding:  10px;
    max-width: 80%;
    margin: 0 auto;
}

.categoria-construccion {
    color: #e86b2d;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-construccion{
    border: 2px solid #e86b2d
}

.btn.btn-construccion {
    color: #fff;
    background-color: #e86b2d;
    border-color: #fff;
}

.btn-construccion:hover {
    color: #fff !important;;
    background-color: #8b421d;
    border-color: #8b421d;
}

.categoria-operacion {
    color: #F8AB12;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-operacion{
    border: 2px solid #F8AB12
}

.btn.btn-soperacion {
    color: #fff;
    background-color: #F8AB12;
    border-color: #fff;
}

.btn-soperacion:hover {
    color: #fff !important;;
    background-color: #9a6e15;
    border-color: #9a6e15;
}

.categoria-tecnologia {
    color: #19AAA3;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-tecnologia{
    border: 2px solid #19AAA3
}

.btn.btn-tredes {
    color: #fff;
    background-color: #19AAA3;
    border-color: #fff;
}

.btn-tredes:hover {
    color: #fff !important;;
    background-color: #126662;
    border-color: #126662;
}

.categoria-dnaturales {
    color: #99cc33;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-dnaturales{
    border: 2px solid #99cc33
}

.btn.btn-dnaturales {
    color: #fff;
    background-color: #99cc33;
    border-color: #fff;
}

.btn-dnaturales:hover {
    color: #fff !important;;
    background-color: #56711e;
    border-color: #56711e;
}

.categoria-logistica {
    color: #E15156;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-logistica{
    border: 2px solid #E15156
}

.btn.btn-logistica {
    color: #fff;
    background-color: #E15156;
    border-color: #fff;
}

.btn-logistica:hover {
    color: #fff !important;;
    background-color: #7a2225;
    border-color: #7a2225;
}

.categoria-salud {
    color: #32b5d3;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card-salud{
    border: 2px solid #32b5d3
}

.btn.btn-salud {
    color: #fff;
    background-color: #32b5d3;
    border-color: #fff;
}

.btn-salud:hover {
    color: #fff !important;
    background-color: #195563;
    border-color: #195563;
}

nav {
    /* Estilos para tu barra de navegación */
    background-color: #f8f9fa;
    padding: 10px;
    text-align: center; /* O alineación según tu diseño */
}

/* Estilo base para la imagen */
.logo-container img {
    width: 500px; /* Ajusta este valor según tus necesidades */
    height: auto;
    display: block; /* Asegura que la imagen no tenga espacio extra debajo */
    margin: auto; /* Centra la imagen horizontalmente dentro del contenedor */
}

/* Pantallas grandes (escritorios): Más de 1200px */
@media (min-width: 1200px) {
    .logo-container img {
        width: 500px; /* Tamaño grande por default de la imagen */
    }
}

/* Pantallas medianas (tabletas): Entre 600px y 1199px */
@media (min-width: 600px) and (max-width: 1199px) {
    .logo-container img {
        width: 400px; /* Tamaño mediano para la imagen */
    }
}

/* Pantallas pequeñas (móviles): Menos de 600px */
@media (max-width: 599px) {
    .logo-container img {
        width: 100%; /* La imagen ocupa el 100% del ancho del contenedor */
        max-width: 300px; /* Un máximo de ancho para evitar que la imagen sea demasiado grande */
    }
}

