.ls-vote-card {
    margin-top: 12px;
    padding: 14px;
    border-radius: 8px;
    background: #f7f8fa;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.ls-vote-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 10px;
}

.ls-vote-title i {
    color: #3b82f6;
    font-size: 18px;
    line-height: 22px;
}

.ls-vote-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ls-vote-option {
    position: relative;
    overflow: hidden;
    min-height: 42px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.ls-vote-option.is-selected {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18);
}

.ls-vote-card.is-voted .ls-vote-option,
.ls-vote-card.is-closed .ls-vote-option,
.ls-vote-card.is-locked .ls-vote-option {
    cursor: default;
}

.ls-vote-locked {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #64748b;
    background: rgba(148, 163, 184, 0.12);
}

.ls-vote-locked i {
    color: #94a3b8;
    font-size: 18px;
}

.ls-vote-option-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(59, 130, 246, 0.12);
    transition: width 0.2s ease;
}

.ls-vote-option.is-user-choice .ls-vote-option-bar {
    background: rgba(239, 68, 68, 0.14);
}

.ls-vote-option-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
}

.ls-vote-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #94a3b8;
    flex: 0 0 auto;
}

.ls-vote-option-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef1f5;
    flex: 0 0 auto;
}

.ls-vote-option-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ls-vote-option.is-selected .ls-vote-check,
.ls-vote-option.is-user-choice .ls-vote-check {
    color: #ef4444;
}

.ls-vote-text {
    flex: 1;
    min-width: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.ls-vote-count {
    color: #6b7280;
    font-size: 12px;
    white-space: nowrap;
}

.ls-vote-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: #8a94a6;
    font-size: 13px;
}

.ls-vote-submit {
    border: 0;
    border-radius: 8px;
    padding: 7px 14px;
    background: #3b82f6;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.ls-vote-submit:disabled {
    background: #d9dee8;
    color: #8a94a6;
    cursor: not-allowed;
}

.ls-post-item[data-type="vote"] .ls-post-footer {
    margin-top: 10px;
}

.ls-post-item[data-type="vote"] .ls-post-footer-tags {
    margin-bottom: 10px;
}

.ls-vote-detail .ls-vote-card,
.wd-page .ls-vote-card {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .ls-vote-card {
        padding: 12px;
        margin-top: 10px;
    }

    .ls-vote-title {
        font-size: 14px;
    }

    .ls-vote-footer {
        font-size: 12px;
    }

    .ls-vote-option-image {
        width: 40px;
        height: 40px;
    }
}
