html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Margen específico para orientación vertical */
@media (orientation: portrait) {
    body {
        margin: 10px;
    }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f5f5f5;
    font-family: 'Roboto Flex', sans-serif;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer.footer {
    flex-shrink: 0;
    margin-top: auto; /* Push the footer to the bottom */
}

.custom-listbox {
    height: 400px; /* Adjust the height as needed */
}


/* TOP APPBAR */

.nav-link.active {
    border-bottom: 4px solid #f78d2a;
    padding-bottom: 5px; /* para que haya espacio entre el texto y la barra */
}

/* Color de fondo navbar */
.navbar-background-soft-blue {
    background-color: #bddffc; 
}




/* Botones Home Landing */

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-box {
    width: 150px;
    height: 100px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .service-box .material-symbols-outlined {
        font-size: 32px;
        display: block;
        color: #00aaff;
    }

    .service-box .icon-text {
        margin-top: 12px;
        display: block;
        font-size: 16px;
    }

.related-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.related-service-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 250px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

    .related-service-box:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .related-service-box .material-symbols-outlined {
        font-size: 24px;
        display: inline-flex;
        align-items: center;
    }

    .related-service-box .icon-text {
        margin-left: 10px;
        display: flex;
        align-items: center;
    }