    body {
        font-family: sans-serif;
        text-align: center;
        box-sizing: border-box;
    }

    .movie-card {
        margin: 10px;
        border: 1px solid #ccc;
        display: inline-block;
        border-radius: 8px 8px 0 0;
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .vote_card {
        display: flex;
    }

    /* Grey out the entire action container area when it becomes disabled */
    .vote_card.disabled {
        opacity: 0.5;
        color: #666666;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* Drains the green and red background colors to solid grey */
    .vote_card.disabled .button {
        background-color: #cccccc !important;
        filter: grayscale(1);
    }

    .button {
        font-size: 16px;
        margin: 10px;
        padding: 10px 15px;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        user-select: none;
    }

    .up-btn {
        background-color: #4CAF50;
        color: white;
    }

    .down-btn {
        background-color: #f44336;
        color: white;
    }

    span {
        font-weight: bold;
        font-size: 18px;
    }

    .hidden {
        display: none;
    }

    .vote-up {
        width: 50%;
    }

    .vote-down {
        width: 50%;
    }