.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-item {
    padding: 5px 10px;
    border: 1px solid #006CB4;
    border-radius: 5px;
    margin: 3px 0;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.skill-item:hover {
    background-color: #006CB4;
    color: white;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.empleos_movil {
    display: none !important;
}

.empleos_escritorio {
    display: block !important;
}

@media (max-width: 767px) {
    .empleos_movil {
        display: block !important;
    }

    .empleos_escritorio {
        display: none !important;
    }

    .hide {
        display: none;
    }

    .show {
        display: block;
    }

    .skill-item {
        padding: 5px 10px;
        border: 1px solid #006CB4;
        border-radius: 5px;
        margin: 3px 0;
        flex-shrink: 0;
        font-size: 8px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}