body {
    background: linear-gradient(180deg, #060b16, #0a0f1c);
    font-family: Inter, system-ui, sans-serif;
}

/* Card */
.vote-card {
    width: 260px; /* 👈 ancho fijo, como querías */
    background: #121a2b;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    position: relative;
}

/* Número */
.badge-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: grid;
    place-items: center;
    z-index: 2;
}

/* Imagen */
.vote-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenido */
.card-body-custom {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Nombre */
.candidate-name {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    color: #9ca3af;
}

/* Botón */
.vote-card .btn-primary {
    border-radius: 14px;
    font-weight: 500;
}
