/* Anket Detay CSS */

.anket-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.anket-header {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.anket-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.anket-description {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

body.dark-mode .anket-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .anket-header {
    background: linear-gradient(45deg, #1a202c, #2d3748) !important;
    border-bottom-color: #4a5568 !important;
}

body.dark-mode .anket-question {
    color: #f7fafc !important;
}

body.dark-mode .anket-description {
    color: #cbd5e0 !important;
}

body.dark-mode .anket-option {
    background: #1a202c !important;
    border-color: #4a5568 !important;
}

body.dark-mode .anket-option:hover {
    background: #4a5568 !important;
}

body.dark-mode .anket-option-text {
    color: #e2e8f0 !important;
}

body.dark-mode .result-bar {
    background: #1a202c !important;
}

body.dark-mode .result-fill {
    background: linear-gradient(90deg, #4299e1 0%, #667eea 100%) !important;
}

body.dark-mode .result-text {
    color: #e2e8f0 !important;
}

body.dark-mode .result-percentage {
    color: #90cdf4 !important;
}

.other-polls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-poll-item {
    background: #fff;
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.poll-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.poll-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.poll-item-title a {
    color: #2c3e50;
    text-decoration: none;
}

.poll-item-title a:hover {
    color: #007bff;
}

.poll-item-stats {
    margin-top: 0.5rem;
}

body.dark-mode .other-poll-item {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
}

body.dark-mode .poll-item-title a {
    color: #f7fafc !important;
}
