/* Symptom selection styles for search results */
.result-item {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.select-symptom {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: transparent;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
    opacity: 0; /* Hidden by default */
}

.result-item:hover .select-symptom {
    background: #4299e1;
    color: white;
    opacity: 1; /* Show on hover */
}

.select-symptom::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.select-symptom.selected {
    opacity: 1;
    background: #38a169;
}

.select-symptom.selected::before {
    content: '✓';
}

.symptom-content {
    flex: 1;
    padding: 0 10px;
}