header img {
    width: 100%;
    height: 80vh;
}

.candidate-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.symbol-img {
    width: 70px;
    height: 50px;
}

.vote-btn {
    background-color: #0d6efd;
    border: none;
    border-radius: 25px;
    padding: 8px 25px;
    color: white;
    font-weight: 600;
}

table th, table td {
    vertical-align: middle;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}

.modal-box {
    width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.top-banner {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    height: 120px;
    position: relative;
}

.top-banner img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
    color: white;
}

.green-msg {
    color: green;
    font-weight: 600;
}

.whatsapp-btn {
    background: #25D366;
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    color: white;
    font-size: 18px;
}

.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}



/* MOBILE RESPONSIVE */
@media (max-width: 576px) {

    header img {
        height: 35vh;
        /*object-fit: cover;*/
    }

    .candidate-img {
        width: 30px;
        height: 30px;
    }

    .symbol-img {
        width: 50px;
        height: 40px;
    }

    table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .vote-btn {
        padding: 6px 15px;
        font-size: 14px;
        border-radius: 20px;
    }

    .modal-box {
        width: 90%;
        max-width: 90%;
        border-radius: 15px;
    }

    .top-banner {
        height: 90px;
    }

    .top-banner img {
        width: 60px;
        height: 60px;
        bottom: -30px;
    }

    .whatsapp-btn {
        font-size: 16px;
        padding: 8px;
    }

    .close-btn {
        font-size: 18px;
        right: 10px;
        top: 8px;
    }
}