.mcb-vote.democracy {
    position: relative;
    border: 1px solid rgba(0,0,0,.1);
    background: rgba(0,0,0,.05);
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 6px;
}

.dem-title {
    margin: 0 0 1em 0;
    font-size: 115%;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.dem-vote {
    list-style: none !important;
    margin: 0 0 1em 0;
    padding: 0;
}

.dem-vote li {
    list-style: none !important;
    margin-bottom: 0.6em;
    padding: 0;
}

.dem-vote li:before {
    display: none;
}

.dem-vote label {
    display: block;
    padding: 0.7em 0.9em;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    opacity: .9;
    line-height: 1.3;
}

.dem-vote label:hover {
    opacity: 1;
    background: rgba(255,255,255,.95);
    border-color: rgba(0,0,0,.15);
}

.dem-vote input[type='radio'] {
    margin: 0 .4em 0 0;
    vertical-align: middle;
}

.dem-vote input[type='radio']:focus {
    outline: none;
}

.dem-btn {
    display: block;
    width: 100%;
    padding: 0.8em 1.2em;
    margin: 0 0 1em 0;
    cursor: pointer;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
    text-align: center;
}

.dem-btn:hover:not(:disabled) {
    background: #005a87;
}

.dem-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.dem-results {
    list-style: none !important;
    margin: 0 0 1em 0;
    padding: 0;
}

.dem-results li {
    list-style: none !important;
    padding-bottom: 1em;
    margin: 0;
}

.dem-results li:before {
    display: none;
}

.dem-label {
    margin-bottom: .3em;
    line-height: 1.2;
    font-weight: 500;
    font-size: 14px;
}

.dem-bar {
    position: relative;
    display: table;
    width: 100%;
    height: 1.2em;
    line-height: 1.2em;
    background: rgba(255,255,255,.8);
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
}

.dem-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #7cb4dd;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.dem-voted .dem-fill {
    background: #FFC45A;
}

.dem-text {
    position: relative;
    display: table-cell;
    padding-left: .5em;
    vertical-align: middle;
    font-size: 13px;
    font-weight: 500;
    z-index: 1;
}

.dem-total {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,.6);
    padding-top: 0.5em;
}

.mcb-vote-message {
    margin-top: 0.8em;
    padding: 0.7em 1em;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.mcb-vote-message-loading {
    background: #e3f2fd;
    color: #2196F3;
    display: block;
}

.mcb-vote-message-success {
    background: #d1fae5;
    color: #10b981;
    display: block;
}

.mcb-vote-message-error {
    background: #fee2e2;
    color: #ef4444;
    display: block;
}

.mcb-vote-editor .dem-vote input[type='radio'] {
    pointer-events: none;
}

.mcb-vote-editor .dem-btn {
    opacity: 0.7;
    pointer-events: none;
}

@media (min-width: 768px) {
    .dem-vote {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.6em;
    }
}

@media (max-width: 767px) {
    .mcb-vote.democracy {
        padding: 0.8em;
    }

    .dem-title {
        font-size: 105%;
    }

    .dem-vote label {
        padding: 0.6em 0.8em;
    }

    .dem-btn {
        padding: 0.7em 1em;
    }
}