.sticky-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 81, 71);
    padding: 10px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-banner .title {
    color: white;
}

.sticky-banner .title a {
    color: white;
    text-decoration: underline;
}

.image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-image {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.card-content p {
    margin: 0;
}

.vote-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    background: rgba(7, 81, 71);
    padding: 5px 10px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
}

.vote-counter img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    filter: invert(1);
}

.card-footer-item{
    color:rgba(7, 81, 71);
    transition: all 0.3s;
}

.card-footer-item:hover{
    color:white;
    background-color:rgba(7, 81, 71);
}