.pkp_site_name .is_img img {
    max-height: 150px;
}

p, .obj_article_details .abstract, 
.obj_article_details .item > :last-child {
    text-align: justify;
}

.block_make_submission_link {
    position: relative;
    font-size: 15px !important;
    line-height: 40px !important;
    overflow: hidden; /* Ensure glitter effect doesn't overflow */
}

@keyframes shine {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

@keyframes glitter {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.block_make_submission_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    background-size: 200% 200%;
    z-index: -1;
    animation: glitter 2s linear infinite;
}

.block_make_submission_link {
    animation: shine 3s linear infinite;
}
