/* Estilos para el modal de ayuda */
.help-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.help-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
}

.help-close:hover {
    color: #333;
}

.help-section {
    margin-bottom: 20px;
}

.help-section h3 {
    color: #8e44ad;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.help-section h4 {
    color: #333;
    margin: 15px 0 8px;
}

.help-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.help-section li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.help-section strong {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .help-modal-content {
        width: 95%;
        padding: 15px;
    }

    .help-section h3 {
        font-size: 18px;
    }

    .help-section h4 {
        font-size: 16px;
    }
}