/* Estilos para iconos de tooltip */
.question-tooltip {
    display: inline-block;
    margin-left: 8px;
    color: #28a745;
    cursor: pointer;
    font-size: 1em;
    vertical-align: middle;
}

.question-tooltip:hover {
    color: #20c997;
}

/* Tooltip personalizado */
.custom-therapy-tooltip {
    position: fixed;
    z-index: 99999;
    background-color: #28a745;
    color: white;
    padding: 12px 16px;
    border-radius: 0.5rem;
    max-width: 400px;
    min-width: 200px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
    pointer-events: none;
    text-align: left;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Modal de terapia */
#therapyInfoModal .modal-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-bottom: none;
}

#therapyInfoModal .modal-title {
    color: white;
    font-weight: 600;
}

#therapyInfoModal .modal-body {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

#therapyInfoModal .modal-footer {
    border-top: none;
    justify-content: center;
}

#therapyInfoModal .btn-success {
    background: #28a745;
    border-color: #28a745;
}
