* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body {
    background-color: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

/* Header - Green Theme with Background Pattern */
.header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    color: white;
    padding: 30px 40px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.header .subtext {
    font-size: 18px;
    color: #e8f5e8;
    margin-top: 12px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ISSN Badge - Enhanced */
.header .issn, .issn-display {
    position: absolute;
    top: 25px;
    right: 40px;
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Navigation - Enhanced Green Theme */
.nav {
    /* background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%); */
    background: #1D2F23;
    color: #00FF99;
    padding: 0;
    display: flex;
    justify-content: center;
    /* border-bottom: 4px solid #4caf50; */
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-links a:last-child {
    border-right: none;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Dropdown Styles - Enhanced */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 300px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 10px;
    border: 2px solid #c8e6c9;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: #2d5016 !important;
    padding: 15px 20px !important;
    text-decoration: none;
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #f0f8f0 !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

.dropdown-content a:last-child {
    border-bottom: none !important;
}

.dropdown-content a:hover {
    background: #f0f8f0 !important;
    color: #1b5e20 !important;
    transform: translateX(8px) !important;
    box-shadow: none !important;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown > a::after {
    content: " ▾";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Three Column Layout - WJPSR Style */
.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 30px;
    padding: 30px 20px;
    background: #f8f9fa;
    min-height: 85vh;
}

/* Left Sidebar - New WJPSR Style */
.left, .left-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    height: fit-content;
    overflow: hidden;
}

.sidebar-section {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    margin: 0;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section li {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-section li:last-child {
    border-bottom: none;
}

.sidebar-section a {
    display: block;
    padding: 15px 25px;
    color: #2d5016;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-section a:hover {
    background: #f0f8f0;
    color: #1b5e20;
    transform: translateX(8px);
    border-left: 4px solid #4caf50;
}

/* Left Sidebar Journal Cover */
.left img, .journal-cover img {
    display: block;              
    margin: 15px auto;          
    width: 90%;                  
    height: auto;
    border: 1px solid #ddd;      
    border-radius: 6px;          
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    padding: 0;                 
    background: #fff;            
    transition: transform 0.3s ease;
}

.left img:hover, .journal-cover img:hover {
    transform: scale(1.02);      
}


/* Main Content Area - Enhanced */
.policy-container, .main-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.policy-content, .content-section {
    padding: 40px;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

/* Welcome Header */
.welcome-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-radius: 10px;
    border: 2px solid #c8e6c9;
}

.welcome-header h1 {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.welcome-header p {
    color: #4a7c59;
    font-size: 18px;
    font-weight: 500;
}

/* Content Headings */
.policy-content h1, .content-section h1 {
    color: #2d5016;
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 4px solid #66bb6a;
    padding-bottom: 15px;
    font-weight: 700;
}

.policy-content h2, .content-section h2 {
    color: #2d5016;
    font-size: 24px;
    margin: 35px 0 20px 0;
    font-weight: 600;
    position: relative;
}

.policy-content h2::before, .content-section h2::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #4caf50;
    border-radius: 2px;
}

.policy-content p, .content-section p {
    margin-bottom: 20px;
    text-align: justify;
}

.policy-content b, .policy-content strong,
.content-section b, .content-section strong {
    color: #2d5016;
    font-weight: 600;
}

/* Journal Info Grid */
.homeContainer, .journal-info {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #c8e6c9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.homeContainer label, .info-item {
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    padding: 8px 0;
}

.info-label {
    font-weight: 700;
    color: #2d5016;
    min-width: 120px;
}

.info-value {
    color: #555;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
    border-left-width: 8px;
}

.feature-card h3 {
    color: #2d5016;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Key Features List */
.key-features {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #e0e0e0;
}

.key-features h3 {
    color: #2d5016;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.key-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.key-features li {
    color: #555;
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.key-features li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 12px;
}

.key-features li:hover {
    color: #2d5016;
    transform: translateX(5px);
}

/* Scope Areas */
.scope-areas {
    margin: 40px 0;
}

.scope-areas h2 {
    color: #2d5016;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.scope-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #c8e6c9;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.scope-card:hover {
    border-color: #4caf50;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
    transform: translateY(-5px);
}

.scope-card h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.scope-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Right Sidebar - Enhanced */
.right, .right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Submit Manuscript - Enhanced */
.submit-manuscript {
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    color: white;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.submit-manuscript:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
}

.submit-manuscript h3 {
    color: white;
    margin: 0;
    padding: 25px 25px;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.submit-manuscript a {
    color: white;
    text-decoration: none;
}

/* Recent Issues - Enhanced */
.recent-issues {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.recent-issues h3 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    margin: 0;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.recent-issues ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-issues li {
    border-bottom: 1px solid #f0f8f0;
}

.recent-issues li:last-child {
    border-bottom: none;
}

.recent-issues li button {
    background: none;
    border: none;
    color: #2d5016;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 25px;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-weight: 500;
}

.recent-issues li button:hover {
    background: #f0f8f0;
    color: #1b5e20;
    transform: translateX(8px);
    border-left: 4px solid #4caf50;
}

.recent-issues a {
    display: block;
    padding: 16px 25px;
    color: #2d5016;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.recent-issues a:hover {
    background: #f0f8f0;
    color: #1b5e20;
    transform: translateX(8px);
    border-left: 4px solid #4caf50;
}

/* Archives Button */
.archives-btn {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #f0f8f0;
}

.archives-btn a {
    color: #2d5016 !important;
    font-weight: 700 !important;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #2d5016;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.archives-btn a:hover {
    background: #2d5016;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

/* Footer - Enhanced Green Theme */
.footer {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #e8f5e8;
    padding: 50px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.footer h3 {
    color: #81c784;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer a {
    color: #c8e6c9;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer a:hover {
    color: #81c784;
    transform: translateX(8px);
}

.footer p {
    color: #a5d6a7;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer strong {
    color: #e8f5e8;
}

/* Bottom Bar */
.bottom-bar {
    background: #1b5e20;
    text-align: center;
    color: #a5d6a7;
    padding: 25px;
    font-size: 14px;
    border-top: 1px solid #2e7d32;
}

/* Login Container Styles */
.login-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    max-width: 500px;
    margin: 0 auto;
}

.login-header {
    color: #2d5016;
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 4px solid #66bb6a;
    padding-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.login-form label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
    color: #2d5016;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

.login-links {
    text-align: center;
    margin-top: 20px;
}

.login-links a {
    text-decoration: none;
    color: #4caf50;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #2d5016;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.mobile-nav {
    display: none;
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    border-bottom: 4px solid #4caf50;
}

.mobile-nav a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* Mobile Dropdown */
.mobile-dropdown-content {
    display: none;
    background: rgba(45, 80, 22, 0.9);
    padding-left: 20px;
}

.mobile-dropdown-content a {
    padding: 12px 25px !important;
    font-size: 14px !important;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 260px 1fr 320px;
        gap: 25px;
        padding: 25px 15px;
    }
    
    .header {
        padding: 25px 20px;
    }
    
    .header .issn, .issn-display {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
    
    .header h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    
    .header {
        padding: 25px 15px;
        text-align: center;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .policy-content, .content-section {
        padding: 25px;
    }
    
    .homeContainer, .journal-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-grid, .scope-grid {
        grid-template-columns: 1fr;
    }
    
    .key-features ul {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }
    
    .policy-content, .content-section {
        padding: 20px;
        font-size: 14px;
    }
    
    .welcome-header h1 {
        font-size: 28px;
    }
    
    .submit-manuscript h3 {
        font-size: 16px;
    }
}




/* Login Sidebar Styles */
.login-sidebar {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.login-sidebar h3 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    margin: 0;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
}

.sidebar-login-form {
    padding: 25px;
}

.sidebar-login-form .form-group {
    margin-bottom: 20px;
}

.sidebar-login-form label {
    display: block;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 8px;
    font-size: 14px;
}

.sidebar-login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.sidebar-login-form input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.sidebar-login-form input::placeholder {
    color: #999;
    font-size: 14px;
}

.login-links-sidebar {
    text-align: center;
    margin: 15px 0 20px 0;
    font-size: 13px;
}

.login-links-sidebar a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-links-sidebar a:hover {
    color: #2d5016;
    text-decoration: underline;
}

.login-links-sidebar span {
    color: #999;
    margin: 0 5px;
}

.sidebar-login-btn {
    width: 100%;
    /* background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%); */
   background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* User Dashboard Sidebar */
.user-dashboard-sidebar {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.user-dashboard-sidebar h3 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    margin: 0;
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
}

.user-dashboard-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-dashboard-sidebar li {
    border-bottom: 1px solid #f0f8f0;
}

.user-dashboard-sidebar li:last-child {
    border-bottom: none;
}

.user-dashboard-sidebar a {
    display: block;
    padding: 15px 25px;
    color: #2d5016;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.user-dashboard-sidebar a:hover {
    background: #f0f8f0;
    color: #1b5e20;
    transform: translateX(8px);
    border-left: 4px solid #4caf50;
}

/* Track Article Section */
.track-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.track-article h3 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    margin: 0;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
}

.track-form {
    padding: 25px;
}

.track-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.track-form input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.track-form input::placeholder {
    color: #999;
    font-size: 14px;
}

.track-form button {
    width: 100%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* Mobile Responsive for Sidebar */
@media (max-width: 768px) {
    .login-sidebar,
    .user-dashboard-sidebar,
    .track-article {
        margin-bottom: 20px;
    }
    
    .sidebar-login-form {
        padding: 20px;
    }
    
    .track-form {
        padding: 20px;
    }
    
    .login-sidebar h3,
    .user-dashboard-sidebar h3,
    .track-article h3 {
        padding: 15px 20px;
        font-size: 14px;
    }
}