
.hover {
    width: 100%;
    border: 0px solid #d9e4ff;
    border-radius: 30px 0px 30px 0px;
}

.hover th {
    height: 45px;
    background: #3d9987;
    color: #ffffff;
}

.hover td {
    height: 40px;
    padding-top: 1px;
    vertical-align: middle;
    border-bottom: 1px solid #3d9987;
    text-align: center;
    background-color: #d9e4ff;
}

.hover td a {
    width: 100%;
    display: block;
    color: #3d9987;
    text-decoration: none;
}

.hover tr {
    background: #d9e4ff;
    color: #3d9987;
}

.hover tr:hover {
    background-color: #3d9987;
    color: #ffffff;
}

.hover tr a {
    color: #3d9987;
    transition: all 0.3s ease;
}

.hover a:hover {
    color: #ffffff;
    font-size: 18px;
}

.warning {
    color: red;
}

#bigtext {
    color: #ffffff;
    background: #3d9987;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 130px;
    max-width: 130%;
    width: auto;
    height: auto;
    border: 5px hidden #d9e4ff;
}

.pkp_structure_page {
    margin-top: 0px;
    margin-bottom: 0px;
}

.pkp_site_name_wrapper,
.pkp_navigation_primary_row {
    padding-left: 10px;
    padding-right: 10px;
}

.pkp_site_name {
    padding-top: 5px;
    padding-bottom: 2px;
}

.obj_Editorial.Team .is_img img {
    display: inline-block;
    max-height: 87px;
    max-width: 87%;
    width: auto;
    height: auto;
    border: 5px hidden #d9e4ff;
}

.obj_article_details .abstract {
    text-align: justify;
    font: tahoma, geneva, sans-serif;
}

/* Submission Button */
.block_make_submission_link {
    animation-name: blinker;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #ffffff;
    font-size: 20px !important;
    padding: 6px;
    border-radius: 20px;
    line-height: 50px !important;
}

.block_make_submission_link:hover {
    background: #3d9987;
    transition: all 1s ease;
}

.block_make_submission_link:active {
    background: linear-gradient(to right, #3d9987 0%, #2d7c6b 50%, #265e51 100%);
    box-shadow: rgba(0, 0, 0, 0.6) 5px 5px 15px 5px;
    border: none;
    display: inline-block;
}

@keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

a, span {
    color: #3d9987;
}

/* Footer links */
#pageFooter a:hover,
#pageFooter a:focus {
    color: #3d9987;
}

#pageFooter a:active {
    color: #FEC010;
}

/* About the Journal Block */
.pkp_block.block_information .title {
    background-color: #3d9987;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

.pkp_block.block_information a {
    color: #3d9987;
    text-decoration: none;
}

.pkp_block.block_information a:hover {
    background-color: #d9e4ff;
    color: #1f4d44;
}
indexing css images
.indexing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 15px;
    max-width: 100%;
    margin: auto;
}

.index-card {
    width: 160px;
    height: 170px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.index-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #0d6efd;
    border-radius: 0;
}

.index-card img {
    width: 100%;
    max-width: 110px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}

.index-card:hover img {
    transform: scale(1.05);
}

.index-card a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    word-break: break-word;
}

.index-card:hover a {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .index-card {
        width: 140px;
        height: 150px;
    }

    .index-card img {
        max-width: 90px;
        max-height: 50px;
    }

    .index-card a {
        font-size: 12px;
    }
}