.result-card {
    background: #f3f3f3;
    border-radius: 18px;
    padding: 28px 22px;
    min-height: 180px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.2s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.result-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6f00;
    line-height: 1;
    margin-bottom: 12px;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.candidate-card {
    background: #f3f3f3;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.candidate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.candidate-img {
    width: 80px;
    height: 80px;
    object-fit:fill;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.candidate-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 6px;
}

.candidate-party {
    font-size: 1rem;
    font-weight: 700;
    color: #555555;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.candidate-votes {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
}

.progress {
    height: 12px;
    border-radius: 12px;
    background: #d9d9d9;
    overflow: hidden;
}

.progress-bar {
    background: #ff6f00 !important;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}