input, textarea { font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto; }
.rounded-lg { border-radius: 12px; }
.rounded-2xl { border-radius: 18px; }
.form-radio { width: 18px; height: 18px; margin:5px; accent-color: #10B981; }

.voted-option {
    background-color: #e6f0ff; /* soft blue */
    border-radius: 8px;
    border: 1px solid #b3d1ff;
    padding: 4px;
}
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 50;
}
.toast.show {
    opacity: 1;
}
