body {
    height: auto;
    margin: 0;
    background-image: url(https://i.imgur.com/HZvSiJm.jpeg)

}

.pkp_site_name .is_img img {
    display: inline-block;
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
}
.pkp_site_name {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}

.pkp_structure_page {
  margin-top: 0px ;
  margin-bottom: 0px;
}
.pkp_site_name_wrapper, .pkp_navigation_primary_row {
  padding-left: 0px;
  padding-right: 0px;

}
.pkp_nav_list li{
 
  margin-left: 8px;
padding-left: 0.3em;
}
.pkp_site_name {
	padding-top: 0;
	padding-bottom: 0;
}
.pkp_site_name > a {
    padding-top: 0;
    padding-bottom: 0;
}
.obj_article_details .abstract {
    text-align: justify;
    font:tahoma,geneva,sans-serif;
}

.login-btn {
    text-align: center;
    color: #ffffff;
    display: inline-block;
    text-decoration: none !important;
    margin: 0 auto;
    padding: 8px; /* Increased padding for better accessibility */
    width: 220px;
    height: 40px; /* Balanced height */
    background: linear-gradient(135deg, #1e3c72, #000000); /* Blue to black gradient */
    border: none;
    border-radius: 8px; /* Smooth rounded corners */
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.login-btn:hover {
    background: linear-gradient(45deg, #004c8c, #333333); /* Darker blue to gray for hover effect */
    transform: scale(1.05); /* Subtle zoom effect */
}


.submit-btn {
    text-align: center;
    color: #ffffff;
    display: inline-block;
    text-decoration: none !important;
    margin: 0 auto;
    padding: 8px; /* Increased padding for accessibility */
    width: 220px;
    height: 40px; /* Balanced height */
    background: linear-gradient(135deg, #1e3c72, #000000); /* Sunset orange to soft pink gradient */
    border: none;
    border-radius: 8px; /* Rounded corners for a modern look */
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.submit-btn:hover {
    background: linear-gradient(45deg, #004c8c, #333333); /* Darker orange and pink for hover effect */
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Dark Blue Gradient Menu Buttons */
.menu-button {
    display: block;
    background: linear-gradient(90deg, #0D1B2A, #1B263B); /* dark blue gradient */
    color: #ffffff;
    padding: 10px 15px;
    margin: 5px 0;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.menu-button:hover {
    background: linear-gradient(90deg, #1B263B, #0D1B2A); /* reverse gradient on hover */
    color: #ffffff;
}

/* INDEXING HEADER */
.indexing-header {
    font-weight: 900;
    border-bottom: solid 3px #FFCC33;
    background: #F8F8F8;
    border-radius: 10px 10px 0 0;
    padding: 9px;
    margin: 0;
    text-align: center;
    line-height: 23px;
    color: #707070;
    font-size: 14px;
}

/* Logos Container */
.indexing-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* Individual Logo Box */
.indexing-logo {
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
    padding: 5px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.indexing-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Logo Image */
.indexing-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* About Journal Text */
.about_journal .journal-description {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* Journal Info Card */
.journal-info-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #845EC2, #00C9A7); /* Purple → Teal */
}

/* Rows */
.journal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-row:last-child {
    border-bottom: none;
}

.journal-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Labels & Values */
.journal-label {
    font-weight: bold;
}

.journal-value {
    font-weight: normal;
}

/* Action Buttons - Full Width */
.journal-actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 400px; /* same as info card */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journal-actions li {
    margin: 0;
}

/* Buttons */
.btn-instruction, .btn-submit {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Instruction Button Gradient */
/* Instruction Button Gradient */
.btn-instruction {
    background: linear-gradient(90deg, #FF6F91, #FF9671); /* Pink → Orange */
}

.btn-instruction:hover {
    background: linear-gradient(90deg, #FF9671, #FF6F91);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Submit Paper Button Gradient - new color */
/* Submit Paper Button Gradient - Orange Range */
.btn-submit {
    background: linear-gradient(90deg, #FFA500, #FF7F50, #FF8C00); /* Orange → Coral → DarkOrange */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #FF8C00, #FF7F50, #FFA500);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.pkp_brand_footer{
    display: none;
}

