body {
    font-family: 'Roboto', sans-serif;
    /* Utiliza la fuente Roboto para el cuerpo del texto */
    min-height: 100vh;
}

#error {
    height: 100vh;
    max-width: 80%;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#cv > .row {
    min-height: 100vh;
    max-width: 1150px;
    margin: auto;
    border: 1px solid black;
}

#left-column {
    background: linear-gradient(to bottom, #646463 80px, #45475b 80px);
    color: azure;
    padding: 20px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: start;
}

a {
    color: #71acff;
}

.progress {
    height: 0.5rem;
}

.progress-bar {
    background-color: #71acff;
}

.text-grey {
    color: #cacaca !important;
}

.section-info {
    padding: 10px;
    width: 100%;
}

.section-info ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 10px 0px;
}

.section-info h4 {
    margin-bottom: 0px;
}

#right-column {
    background: white;
    padding: 0px;
}

img {
    width: 100%;
    border: 2px solid black;
}

#btn-container {
    width: auto;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#intro {
    background-color: lightgray;
}

.name {
    font-size: 1.5rem;
    margin: 0 0 0.3rem 0;
}

.name>span:first-child {
    font-weight: 600;
}

.academy-title {
    color: #6c757d;
    margin: 0.3rem 0;
}

.job-title span {
    color: #6c757d;
    background-color: rgb(234, 255, 138);
    font-style: italic;
    padding: 0 0.3rem;
}

.separator {
    margin: 0px;
}

.section-title {
    font-style: italic;
    color: #307dea;
}

.section-item-list {
    list-style: none;
    padding: 0;
}

.section-item-list li {
    font-style: italic;
    font-size: 0.8rem;
    padding-left: 30px;
    /* Espacio a la izquierda para el ícono personalizado */
    position: relative;
}

.section-item-list li:before {
    content: "\2713";
    /* Puedes cambiar el carácter o el icono */
    color: #307dea;
    /* Color del icono */
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.section-item > div > * {
    margin: 0px;
}

.section-item > div > :nth-child(1) {
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    margin: 0px;
}

.section-item > div > :nth-child(2) {
    font-size: 0.8rem;
    font-style: italic;
    color: #6c757d;
}

.contenedor-imagen {
    position: relative;
    display: inline-block;
}

.contenedor-imagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(163 87 87 / 15%);
    z-index: 1;
}

@media print {
    #btn-container {
        display: none;
    }

    #cv > .row {
        width: 100%;
        margin: auto;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    #name {
        font-size: 1.1rem;
        margin: 0;
    }

    .section {
        padding-bottom: 0px !important;
    }

    .section-item > div > :nth-child(1) {
        font-size: 0.8rem;
    }

    .section-item > div > :nth-child(2) {
        font-size: 0.6rem;
    }

    .section-item-list li {
        font-style: italic;
        font-size: 0.6rem;
        padding-left: 30px;
        /* Espacio a la izquierda para el ícono personalizado */
        position: relative;
    }

    .job-title,
    .academy-title,
    .profile {
        font-size: 0.9rem;
        margin: 0px;
    }

    .profile {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .section-info {
        font-size: 0.8rem;
    }

}