body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #1e2124;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.urn {
    display: none;
    text-align: center;
    margin-top: 50px;
}

.urn-image {
    width: 100px;
}

#candidatePoster {
    width: 30vw;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.5s;
}

#voteStamp {
    display: none;
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    color: red;
    font-weight: bold;
    transition: top 0.5s;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: #1e2124;
    padding: 20px;
    border-radius: 5px;
}
.program-image {
    max-height: 65vh;
    height: auto;
    border-radius: 5px;
    margin: 10px;
}
button {
    padding: 10px 20px 10px 20px;
    border-radius: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 15pt;
    color: white;
    background-color: #5865f2;
}
button:hover :not(.disabled) {
    background-color: #7289da;
}
.disabled {
    background-color: #b0b0b0;
    cursor: not-allowed;
}

