.vote-results {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.vote-results p {
    color: var(--rust-light);
    font-weight: bold;
    margin-bottom: 15px;
}

.result-item {
    margin-bottom: 12px;
}

.result-item span {
    color: var(--rust-light);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.percentage-bar {
    height: 20px;
    background-color: rgba(205, 65, 43, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.percentage-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--rust-orange), var(--rust-orange-hover));
    transition: width 0.3s ease;
    border-radius: 10px;
    width: var(--percentage, 0%);
}

.vote-results.active .percentage-bar::before {
    animation: fillBar 1s ease forwards;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--percentage); }
}