* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a5276;
            --secondary: #2980b9;
            --accent: #e74c3c;
            --light: #f5f7fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }

        .journal-metrics {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-weight: bold;
            font-size: 1.1rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #e6f7ff;
        }

        nav a.active {
            font-weight: 600;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: white;
        }

        /* Main Content */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }

        .current-issue {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
        }

        .issue-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .issue-title {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 600;
        }

        .issue-meta {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .article {
            padding: 20px;
            border-radius: 6px;
            background: var(--light);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary);
        }

        .article:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .article-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .article-authors {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .article-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--secondary);
        }

        .btn-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }

        .card-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }

        .submit-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .submit-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            border-radius: 6px;
            background: var(--light);
            transition: all 0.3s ease;
        }

        .submit-option:hover {
            background: #e8f4fc;
        }

        .submit-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
        }

        .submit-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .submit-details p {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .journal-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }

        .info-label {
            font-weight: 500;
            color: var(--dark);
        }

        .info-value {
            color: var(--gray);
        }

        .impact-factor {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border-radius: 6px;
            text-align: center;
            margin-top: 10px;
        }

        .impact-value {
            font-size: 2rem;
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px 0 15px;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ecf0f1;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 15px;
            }

            .journal-metrics {
                justify-content: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Logo Section */
        .logo-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 30px;
        }

        .logo-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }

        .logo-large {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .logo-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .logo-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 20px;
            max-width: 600px;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
            margin-top: 20px;
        }

        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px;
            border-radius: 8px;
            background: var(--light);
            transition: all 0.3s ease;
        }

        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .logo-item i {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .logo-item h4 {
            font-size: 1.1rem;
            color: var(--dark);
        }

        .toparticle a {
            font-size: 10px;
        }

        .toparticle {
            justify-content: space-between;
        }

        .toparticle .article-actions {

            gap: 7px !important;
            justify-content: left !important;
        }

        .customlogwrap .logo-grid {
            grid-template-columns: repeat(6, 1fr) !important;
        }

        /* .customsidebar {

            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: 280px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            z-index: 999;
            padding: 20px;
            max-height: 80vh;
            overflow-y: auto;
        } */

        .customsidebar {



            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            z-index: 999;
            padding: 20px;
            max-height: 100%;

        }

        .sidebar-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gray);
        }

        .sidebar-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background-color: #e9ecef;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #000;
            text-decoration: none;
        }

        .sidebar-link span {
            margin-left: 10px;
        }

        .sidebar-link:hover {
    background-color: #1a4b8c;
    color: white;
    transform: translateX(-5px);
}

/* form */
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
}

.form-group select {
    width: 100%;
   padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px);
}


/* logo section */
.customlogwrap .logo-grid {
            grid-template-columns: repeat(9, 1fr) !important;
            margin-top: 0px;
            gap: 10px !important;
        }

        .logo-item {

            padding: 4px !important;

        }

        .logo-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 9px 15px 13px 11px;
            margin-bottom: 30px;
        }

        .logo-content {
           
            gap: 10px !important;
        }


        .metric {
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}

.metric-value {
    font-weight: bold;
    font-size: 12px;
}

.search-box {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.search-box input {
    width: 290px;
    border: 1px solid #ddd;
    border-radius: 5px 0px 0px 5px;
    padding: 10px 15px;
    height: 30px;
    font-size: 13px;
}

.search-box  .icon-search {
    position: relative;
    color: #5FB6B8;
    border-radius: 0px 5px 5px 0px;
   height: 30px;
    display: flex;
    align-items: center;
    background: #106399fc;
    border: 1px solid #1c778a;
    width: 50px;
    justify-content: center;
}

.search-box  .icon-search i {
    font-size: 16px;
    color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.current-issue {
   
           padding: 1px 20px 10px;
           margin-top: 10px !important;
}

.issue-header {
   
    margin-bottom: 9px !important;
    padding-bottom: 0px;

   
}

.toparticle  img{
        width: 100px !important;
    height: 125px !important;
}

.main-content {
  
    margin: 0px 0 ;
}

.article {
    padding: 10px;
    
}

.sidebar {
   
    gap: 0px;
}

.sidebar-header {
  
    margin-bottom: 0px;
    padding-bottom: 0px;
   
}

.customsidebar {
   
    padding: 0px 16px 10px;
    margin-top: 10px;
}



.sidebar-link {
    padding: 2px 15px;
    font-size: 15px;
}

.issue-title {
    font-size: 22px;
   line-height: 30px;
}

.article-authors {
    color: black;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.article-authors i {
    margin-right: 5px;
}

.tablewrap{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.tablewrap table {
    width: 100%;
    text-align: center;


}
.tablewrap img {
    margin-right: 8px;
}

element.style {
    margin-right: 8px;
}

.articledetails .article {
    padding: 1px 9px;
}

a.anchorwrap {
    text-decoration: none;
    color: black;
}

 .artilcerow{
   
    
    padding: 8px 6px 8px;
  

}

.archiveissue .issue-header {
    margin-bottom: 0px !important;
    padding-bottom: 0px;
}

.article {
    padding: 0px 10px;
}
/* .article {
    padding: 0px 10px 10px;
} */
.contactwrap .article {
    padding: 0px 0px 8px 8px;
}

.archiveissue .article {
    padding: 0px 0px 9px 10px;
}

/* .current-issue {
    padding: 1px 7px 10px;
    margin-top: 10px !important;
} */


.indexrow {
    padding: 6px 10px 0px;
}

.artilcerow .indexrow {
    padding: 6px 9px 10px;
}

.currentarticle{
        margin: 0px 0px 1px 0px;
        padding: 6px 9px 0px !important;
}