/**
 * Haber Sitesi - Anket Sistemi CSS Stilleri
 */

/* Anket Widget */
.poll-widget {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.poll-widget .widget-title {
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.poll-widget .widget-title h3 {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}

.poll-question {
    margin-bottom: 20px;
}

.poll-question h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.poll-question p {
    font-size: 14px;
    color: #6c757d;
}

/* Oy Verme Formu */
.poll-form .form-check {
    padding-left: 25px;
}

.poll-form .form-check-input {
    margin-top: 0.25rem;
}

.poll-form .form-check-label {
    font-size: 14px;
}

.poll-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Anket Sonuçları */
.poll-results .poll-option {
    margin-bottom: 15px;
}

.poll-option-text {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.poll-results .progress {
    height: 20px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.poll-results .progress-bar {
    background-color: #007bff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
}

.poll-votes {
    font-size: 12px;
    color: #6c757d;
    text-align: right;
    margin-top: 2px;
}

.poll-total-votes {
    font-size: 13px;
    color: #495057;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Aktif ve Oy Verilmiş Seçenekler */
.poll-option.voted .poll-option-text {
    font-weight: 700;
    color: #007bff;
}

.poll-option.voted .progress-bar {
    background-color: #28a745;
}
