#generalNotificationDiv,
#jobOpeningCardDiv {
    max-height: 20rem;
    overflow-y: scroll;
}

#generalNotificationDiv::-webkit-scrollbar,
#jobOpeningCardDiv::-webkit-scrollbar {
    width: 4px;
    border-radius: 12px;
}

#generalNotificationDiv::-webkit-scrollbar-track,
#jobOpeningCardDiv::-webkit-scrollbar-track {
    border-radius: 12px;
}

#generalNotificationDiv::-webkit-scrollbar-thumb,
#jobOpeningCardDiv::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 12px;
}

.marquee {
    display: block;
    margin-bottom: 15px;
    /* Adjust the margin as needed */
    animation: marquee 10s linear infinite;
    /* Adjust the duration as needed */
}

@keyframes marquee {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}