body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
.poll-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.logo-container img {
    max-height: 60px;
    margin-bottom: 20px;
}
.legal-notice {
    font-size: 0.85rem;
    color: #6c757d;
    background-color: #f1f3f5;
    padding: 15px;
    border-left: 4px solid #adb5bd;
    border-radius: 4px;
    margin-bottom: 25px;
}
.candidate-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
}
.candidate-card:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}
.candidate-card.selected {
    border-color: #0d6efd;
    background-color: #e9ecef;
    box-shadow: 0 0 0 2px rgba(13,110,253,.25);
}
.candidate-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background-color: #e9ecef;
}
.candidate-info {
    flex-grow: 1;
}
.candidate-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.candidate-party {
    font-size: 0.85rem;
    color: #6c757d;
}
.radio-custom {
    width: 20px;
    height: 20px;
}
.btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}
.result-bar-container {
    background-color: #e9ecef;
    border-radius: 4px;
    height: 20px;
    margin-top: 8px;
    overflow: hidden;
}
.result-bar {
    background-color: #0d6efd;
    height: 100%;
    width: 0%;
    transition: width 1s ease-in-out;
}
.result-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-top: 4px;
}
.faq-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}
.footer-text {
    font-size: 0.8rem;
    color: #adb5bd;
    text-align: center;
    margin-top: 30px;
}
