/* ===================================
   JOURNAL BANNER STYLES
   =================================== */
.journal-banner {
    width: 100%;
    background: linear-gradient(135deg, #002245 0%, #003366 100%);
    min-height: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 112, 57, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(243, 112, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.journal-banner-content {
    position: relative;
    z-index: 2;
}

.journal-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.journal-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.journal-main-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.journal-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.journal-badge {
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.journal-badge i {
    font-size: 16px;
}

.journal-issn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journal-contact-btn {
    background: #fff;
    color: #002245;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.journal-contact-btn:hover {
    background: #F37039;
    color: #fff;
    border-color: #F37039;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 112, 57, 0.4);
    text-decoration: none;
}

.journal-contact-btn i {
    font-size: 16px;
}

/* ===================================
   JOURNAL CONTENT PAGES
   =================================== */
.jrnl-body {
    padding: 40px 0;
}

.body-title {
    color: #002245;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Content Wrapper */
.content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Section Headers */
.content-wrapper h3 {
    color: #002245;
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #F37039;
}

.content-wrapper h3:first-child {
    margin-top: 0;
}

.content-wrapper h4 {
    color: #002245;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

/* Paragraphs */
.content-wrapper p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-wrapper p strong,
.content-wrapper p b {
    color: #002245;
    font-weight: 600;
}

/* Lists */
.content-wrapper ul.arrow-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-wrapper ul.arrow-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.content-wrapper ul.arrow-list li:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #F37039;
    font-size: 18px;
}

/* Tables */
.content-wrapper .table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.content-wrapper .table thead {
    background: linear-gradient(135deg, #002245 0%, #003366 100%);
}

.content-wrapper .table thead th {
    font-weight: 600;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border: none;
}

.content-wrapper .table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 14px;
}

.content-wrapper .table tbody tr:last-child td {
    border-bottom: none;
}

.content-wrapper .table tbody tr:hover {
    background: #f8f9fa;
}

/* Mobile Scroll Container for Tables */
.content-wrapper .mobile-scroll-container {
    overflow-x: auto;
    margin: 20px -15px;
    padding: 0 15px;
}

/* Horizontal Rule */
.content-wrapper hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 35px 0;
}

/* Special Text Styles */
.content-wrapper .journal_short_code {
    color: #F37039;
    font-weight: 600;
}

/* Links */
.content-wrapper a {
    color: #F37039;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: #002245;
    text-decoration: underline;
}

/* ===================================
   EDITORIAL BOARD / MEMBER SECTION
   =================================== */
.member-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.member-section h3 {
    color: #002245;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #F37039;
}

.board-members {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.editor-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #F37039;
    transition: all 0.3s ease;
}

.editor-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.editor-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.editor-card .name-ef h4 {
    color: #002245;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.editor-card .name-ef h4 a {
    color: #002245;
    text-decoration: none;
    transition: color 0.3s ease;
}

.editor-card .name-ef h4 a:hover {
    color: #F37039;
}

.editor-card .editor_in_cheif_label {
    color: #F37039;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
}

.editor-card .name-ef span {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #002245;
}

.info-box h4 {
    color: #002245;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.info-box a {
    color: #F37039;
    font-weight: 600;
    text-decoration: none;
}

.info-box a:hover {
    color: #002245;
    text-decoration: underline;
}

/* Journal Content Section */
.jnl-content {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.jnl-content h3 {
    color: #002245;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #F37039;
}

.jnl-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.jnl-content p strong {
    color: #002245;
    font-weight: 600;
}

.jnl-content p a {
    color: #F37039;
    font-weight: 600;
    text-decoration: none;
}

.jnl-content p a:hover {
    color: #002245;
    text-decoration: underline;
}

/* Journal Info Section with Table */
.journal-info-section h2 {
    color: #002245;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #F37039;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Current Issue Highlights */
.crnt-highlights {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.current_issue_highlights {
    color: #002245;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #F37039;
}

.impress-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #002245;
    transition: all 0.3s ease;
}

.impress-container:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.impress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.art-type {
    background: #F37039;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-count {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.art-inpress-title {
    margin-bottom: 12px;
}

.art-inpress-title a {
    color: #002245;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    transition: color 0.3s ease;
}

.art-inpress-title a:hover {
    color: #F37039;
}

.author-name {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.author-name .user {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.author-name .user img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-name .autho-list {
    flex: 1;
}

.author-name .author_name {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.author-name .author_name a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name .author_name a:hover {
    color: #F37039;
}

.author-name .author_name sup {
    color: #F37039;
    font-weight: 600;
}

.dock-type {
    display: flex;
    justify-content: flex-end;
}

.file-type {
    display: flex;
    gap: 15px;
    align-items: center;
}

.file-type i {
    display: flex;
    align-items: center;
    gap: 5px;
}

.file-type a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #002245;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.file-type a:hover {
    background: #F37039;
    color: #fff;
    border-color: #F37039;
    transform: translateY(-2px);
}

.file-type img {
    width: 20px;
    height: 20px;
}

table a{
    color: var(--theme-color);
}

/* ===================================
   EDITORIAL FORM STYLES
   =================================== */
.editorial-form-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.editorial-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    color: #002245;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.editorial-form-wrapper .form-group {
    margin-bottom: 20px;
}

.editorial-form-wrapper .form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.editorial-form-wrapper .red {
    color: #F37039;
    margin-left: 3px;
}

.editorial-form-wrapper .form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.editorial-form-wrapper .form-control:focus {
    border-color: #002245;
    box-shadow: 0 0 0 0.2rem rgba(0, 34, 69, 0.15);
    outline: none;
}

.editorial-form-wrapper textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.editorial-form-wrapper select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.text-danger_form_error {
    color: #F37039;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Photo Upload Wrapper */
.photo-upload-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.avatar-placeholder,
.pdf-placeholder {
    width: 120px;
    height: 140px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    flex-shrink: 0;
}

.avatar-placeholder img,
.pdf-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.upload-info {
    flex: 1;
}

.upload-alert {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.upload-alert strong {
    color: #F37039;
}

/* File Input Button Fix */
input[type="file"].form-control {
    padding: 8px 12px;
    cursor: pointer;
}

input[type="file"].form-control::-webkit-file-upload-button {
    background: #002245;
    color: #fff;
    padding: 6px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

input[type="file"].form-control::-webkit-file-upload-button:hover {
    background: #003d7a;
}

/* Research Interests Dynamic Fields */
.research-interest-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.research-interest-row textarea {
    flex: 1;
    min-height: 60px;
}

.research-interest-row .btn {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.research-interest-row .btn-success {
    background: #28a745;
    color: #fff;
}

.research-interest-row .btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.research-interest-row .btn-danger {
    background: #dc3545;
    color: #fff;
}

.research-interest-row .btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Alert Messages */
.editorial-form-wrapper .alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: none;
    font-size: 14px;
}

.editorial-form-wrapper .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.editorial-form-wrapper .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.editorial-form-wrapper .well {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.form-group.text-center {
    margin-top: 30px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .journal-banner {
        min-height: auto;
        top: 50px;
    }
    
    .journal-main-title {
        font-size: 22px;
    }
    
    .journal-logo-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    /* Banner */
    .journal-banner {
        padding: 20px 0;
    }
    
    .journal-main-title {
        font-size: 18px;
    }
    
    .journal-logo-wrapper {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }
    
    .journal-badge {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .journal-issn {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .journal-contact-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    /* Content */
    .content-wrapper {
        padding: 25px 20px;
    }
    
    .body-title {
        font-size: 26px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
    
    .content-wrapper h4 {
        font-size: 16px;
    }
    
    /* Forms */
    .editorial-form-wrapper {
        padding: 25px 20px;
    }
    
    .photo-upload-wrapper {
        flex-direction: column;
    }
    
    .avatar-placeholder,
    .pdf-placeholder {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .editorial-form-wrapper .btn-submit {
        width: 100%;
    }
}

/* ===================================
   SIDEBAR / LEFT MENU STYLES
   =================================== */
.sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Translate Widget */
.translate-container {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Sidebar Cards */
.sidebar-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.sidebar-card-header {
    background: linear-gradient(135deg, #002245 0%, #003366 100%);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-card-body {
    padding: 20px;
}

/* Sidebar Lists */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li,
.sidebar-list span {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.sidebar-list li:last-child,
.sidebar-list span:last-child {
    border-bottom: none;
}

.sidebar-list i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #F37039;
    font-size: 14px;
}

.sidebar-list a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: block;
}

.sidebar-list a:hover {
    color: #F37039;
    padding-left: 5px;
}

/* Flyer Image */
.flyer-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Social Share */
.social-share-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-share-item.fb {
    background: #f0f5ff;
}

.social-share-item.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-share-item.fb:hover a,
.social-share-item.fb:hover svg {
    color: #fff;
}

.social-share-item.tw {
    background: #f0f5ff;
}

.social-share-item.tw:hover {
    background: #000;
    border-color: #000;
}

.social-share-item.tw:hover a,
.social-share-item.tw:hover svg {
    color: #fff;
}

.social-share-item.in {
    background: #f0f5ff;
}

.social-share-item.in:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.social-share-item.in:hover a,
.social-share-item.in:hover svg {
    color: #fff;
}

.social-share-item.insta {
    background: #f0f5ff;
}

.social-share-item.insta:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-color: #DD2A7B;
}

.social-share-item.insta:hover a,
.social-share-item.insta:hover svg {
    color: #fff;
}

.social-share-item svg {
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.social-share-item.fb svg {
    color: #1877F2;
}

.social-share-item.tw svg {
    color: #000;
}

.social-share-item.in svg {
    color: #0A66C2;
}

.social-share-item.insta svg {
    color: #DD2A7B;
}

.social-share-item a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    flex: 1;
}

.social-share-item:hover a {
    color: #fff;
}

/* Responsive Sidebar */
@media (max-width: 991px) {
    .sidebar-container {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .sidebar-card-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .sidebar-card-body {
        padding: 15px;
    }
    
    .sidebar-list li,
    .sidebar-list span {
        padding: 8px 0;
        padding-left: 20px;
    }
    
    .sidebar-list a {
        font-size: 13px;
    }
}