/* Layout & Grid */
.bp-poll-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width: 992px) { .bp-poll-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .bp-poll-grid { grid-template-columns: 1fr; } }

.bp-poll-card { 
    border: 1px solid #e5e7eb; padding: 20px; border-radius: 8px; 
    font-family: 'SolaimanLipi', Arial, sans-serif; background: #fff; margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Header & Icons */
.bp-poll-header { 
    font-size: 13px; color: #666; margin-bottom: 15px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.bp-download-btn { 
    cursor: pointer; color: #333; font-size: 16px; 
    transition: color 0.2s; 
}
.bp-download-btn:hover { color: #0073aa; }

/* Images & Title */
.bp-poll-img img { width: 100%; height: auto; border-radius: 8px; display: block; }
.bp-poll-question { font-size: 19px; font-weight: 700; margin: 15px 0; line-height: 1.4; }
.bp-poll-question a { text-decoration: none; color: #111; }
.bp-poll-question a:hover { color: #0073aa; }

/* Voting */
.bp-option { 
    display: flex; align-items: center; border: 1px solid #111; padding: 10px 15px; 
    border-radius: 6px; margin-bottom: 12px; cursor: pointer; transition: 0.2s; background: #fff;
}
.bp-option:hover { background: #f3f4f6; }
.bp-option input { display: none; }
.bp-option .bubble { width: 20px; height: 20px; border: 2px solid #555; border-radius: 50%; margin-right: 12px; }
.bp-option input:checked + .bubble { background: #000; border-color: #000; }
.bp-option .text { font-size: 15px; font-weight: 500; }

/* Results */
.bp-vote-area.show-results .bp-options { display: none; }
.bp-vote-area:not(.show-results) .bp-results { display: none; }
.bp-total-count { font-weight: 700; margin-bottom: 12px; }

.bp-result-bar { 
    position: relative; border: 1px solid #111; border-radius: 6px; height: 35px; 
    margin-bottom: 10px; overflow: hidden; display: flex; align-items: center; 
    justify-content: space-between; padding: 0 15px; flex-direction: row-reverse;
}

.bp-result-bar .label {
    display: inline-block;
    padding-top: 7px;
    padding-left: 10px;
	width: 75px;
}

.bp-result-bar .bar-fill { 
    position: absolute; left: 0; top: 0; height: 100%; background: #87CEEB; z-index: 0; transition: width 0.5s ease;
}
.bp-result-bar .label, .bp-result-bar .percent { position: relative; z-index: 1; font-weight: 600; font-size: 14px; color: #000; }

/* Footer Share */
.bp-social-share { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-top: 15px; border-top: 1px solid #eee; padding-top: 10px;
}
.bp-social-share .icons { display: flex; gap: 8px; }
.bp-social-share .icons a { 
    display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; 
    border-radius: 50%; color: #fff; text-decoration: none; font-size: 13px;
}
.bp-social-share .fb { background: #3b5998; }
.bp-social-share .wa { background: #25d366; }
.bp-social-share .cp { background: #444; }

/* Single Page Grid */
.bp-single-main-poll { margin-bottom: 50px; }