.upvote-button {
    margin-left: 10px;
    cursor: pointer;
    color: #EE7C2F;
    font-size: 18px;
    transition: color 0.5s;
}

.upvote-button:hover {
    color: #005a8d;
}

.upvote-count {
    margin-left: 10px;
    font-weight: bold;
    color: #073B4A;
}

.blink-red {
    color: red !important;
}

#upvote-overview-button {
    background-color: #EE7C2F;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    position: fixed;
    margin-top: 150px;
    margin-right: 5%; /* Adjust right margin for responsiveness */
    transition: right 0.3s ease, top 0.3 ease;
}

/* Media query for larger screens */
@media (min-width: 1200px) {
    #upvote-overview-button {
        margin-right: 20%; /* Adjust to bring button closer to content */
    }
}

/* Media query for very large screens */
@media (min-width: 1600px) {
    #upvote-overview-button {
        margin-right: 30%; /* Further adjust to avoid being too far right */
    }
}


#upvote-overview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

#upvote-overview-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #073B4A;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}

#upvote-overview-modal .modal-content .modal-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #073B4A;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#upvote-overview-modal .modal-content .modal-button:hover {
    background-color: #005a8d;
}

#upvote-overview-modal .modal-content .red-button {
    background-color: #d9534f;
}

#upvote-overview-modal .modal-content .red-button:hover {
    background-color: #c9302c;
}

#email-form input {
    padding: 10px;
    width: calc(100% - 22px);
    margin-top: 10px;
}

.fa-thumbs-up {
    color: #87C0A5; /* Change this to your desired color */
    font-size: 24px; /* Optional: Adjust size */
    transition: color 0.3s; /* Optional: Smooth transition on hover */
}

.fa-thumbs-up:hover {
    color: #ffaa00; /* Optional: Different color on hover */
}

