/* Vote visualization styles */
.vote-list {
    list-style: none;
    padding: 0;
}

.vote-item {
    padding: 15px;
    margin: 10px 0;
    background: #f9f9f9;
}

.vote-comparison {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vote-comparison a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.vote-comparison a:hover {
    opacity: 0.7;
}

.vote-item-name {
    font-weight: 600;
    color: #333;
    font-family: monospace;
    font-size: 0.95em;
}

.vote-arrow {
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2em;
}

.vote-slider-container {
    width: 100%;
    margin: 10px 0;
}

.vote-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    pointer-events: none;
    background: lightgray;
}

.vote-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #0066cc;
    cursor: default;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vote-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0066cc;
    cursor: default;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vote-ratio {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
    font-family: monospace;
}

.vote-meta {
    color: #999;
    font-size: 0.85em;
    margin-top: 8px;
}

.vote-explanation {
    color: #666;
    font-size: 0.9em;
    margin-top: 8px;
    font-style: italic;
}

.vote-explanation a {
    color: #0066cc;
    text-decoration: none;
}

.vote-explanation a:hover {
    text-decoration: underline;
}

/* Mobile responsive vote styles */
@media (max-width: 640px) {
    .vote-item {
        padding: 12px;
    }
    .vote-comparison {
        gap: 8px;
    }
    .vote-item-name {
        font-size: 0.85em;
    }
}

