
.vote-button{
    margin-top:10px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.35);
    z-index: 1000;
}

.modal-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-align: center;
}

.vote-ranking {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}

.rank-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f7f7f7;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.rank-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank-number {
    font-weight: bold;
    font-size: 18px;
    min-width: 24px;
}

.rank-name {
    font-size: 16px;
}

.rank-remove {
    border: none;
    background: #d9534f;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.rank-remove:hover {
    background: #c9302c;
}


