body{
    font-family: Arial, sans-serif;
}
.card.cursor-pointer{
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.card.cursor-pointer:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.top-bar {
    background: linear-gradient(90deg,#528004,#528004);
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    height: 50px;            /* explicit height */
    display: flex;            /* flex for vertical centering */
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    width: 100%;
    text-align: center;
    z-index: 1000;
}

/* Mobile friendly text */
@media(max-width:768px){
    .top-bar {
        font-size: 13px;
        padding: 8px 5px;
    }
    .top-bar a {
        display: inline-block;
        margin-top: 2px;
    }
}
