.Poll-Wrapper {
    background: var(--B-Color);
    border: 1px solid #303651;
    border-radius: 8px;
    padding: 6px 10px;
    margin: 4px auto;
    width: 95%;
    max-width: var(--Max-Size);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.Poll-Title {
    color: var(--Primary-C-Color);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.Poll-Options {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.Poll-Button {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: row; /* Horizontal for compactness */
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-height: 35px;
}

.Poll-Button:hover {
    background: rgba(57, 219, 191, 0.08);
    border-color: #39dbbf;
}

.Poll-Button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Results Progress Bar */
.Poll-Results {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.Results-Header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--Primary-C-Color);
}

.Results-Header span.active {
    color: #39dbbf;
}

.Progress-Container {
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-bottom: 8px;
}

.Progress-Segment {
    height: 100%;
    transition: width 1s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.Progress-Segment.home { background: linear-gradient(90deg, #39dbbf, #1da1f2); }
.Progress-Segment.draw { background: #565d7e; }
.Progress-Segment.away { background: linear-gradient(90deg, #ff4b2b, #ff416c); }

.Results-Labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.Percentage {
    font-size: 11px;
    color: var(--Primary-C-Color);
    display: block;
    margin-top: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
    .Poll-Options { flex-direction: column; }
    .Poll-Button { width: 100%; }
}
