/* Estilos del formulario de CV */

.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}
.progress {
    height: 10px;
    background: #2980b9;
    border-radius: 5px;
}

.form-step {
    margin-bottom: 30px;
    background-color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 20px;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.next-button, .back-button, .generate-pdf-button {
    padding: 10px 20px;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.next-button:hover, .back-button:hover, .generate-pdf-button:hover {
    background: #1c5987;
}

.aptitudes-sugerencias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.aptitud-sugerida {
    background-color: #f0f0f0;
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}
.aptitud-sugerida:hover {
    background-color: #e0e0e0;
}