/* Poll Sidebar Widget - Modern Style */
.poll-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1.5px solid #1e73be;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 24px;
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.poll-q {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #111;
    margin-bottom: 18px;
}

.poll-opt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.popt {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.popt:hover {
    border-color: #fb8b01;
    background: #fff;
}

.popt-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}

.popt:hover .popt-radio {
    border-color: #fb8b01;
}

.popt.act .popt-radio {
    border-color: #fb8b01;
    background: #fb8b01;
}

.popt.act .popt-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.popt-label {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}

.poll-btn {
    width: 100%;
    background: #1e73be;
    color: #fff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poll-btn:hover {
    background: #155a96;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

.poll-footer {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 12px;
}
