.main_notice_board{
    height: 100vh;
    overflow-y: scroll;
    background-color: var(--secondary-background-color);
}
.main_notice_board::-webkit-scrollbar{
    display: none;
}
.notice_section{
    display: flex;
    justify-content: space-between;
}
.notice_section{
    background-color: var(--notice-bg-color);
    padding: 5px 10px;
    margin: 10px 0;
    color: var(--notice-text-color);
}
.notice_right_content a{
    background-color: var(--button-bg-color) !important;
    color: var(--button-text-color) !important;
    border: none;
}
.notice_right_content a:hover{
    background-color: var(--button-hover-color) !important;
    color: var(--button-text-color) !important;
}


/* --------- notice_image_animation start ---------- */
.notice_image_animation{
    animation: blink 2s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.notice_new_animation {
    font-weight: bold;
    display: inline-block;
}
@keyframes multicolorAnimation {
    0% {
        color: red;
    }
    25% {
        color: rgba(255, 0, 0, 0.879);
    }
    50% {
        color: rgb(255, 0, 0);
    }
    75% {
        color: rgb(255, 0, 0);
    }
    100% {
        color: purple;
    }
}

/* --------- notice_image_animation end ---------- */