/* 1. Header & Logo */
.navbar-brand {
    height: 120px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

/* 2. Menu chính: Nền xanh đậm, chữ trắng */
#nav-menu, 
#nav-menu .btn, 
#headerNavigationContainer > div:nth-child(2) {
    text-transform: uppercase;
    font-weight: bold;
    background-color: #003B66;
    color: #fff !important;
}

.navbar-default .nav > li > a {
    color: #fff !important;
}

/* 3. FIX LỖI LOGIN: Chữ xanh đậm trên nền trắng của Top Bar */
#navigationUser > li > a {
    color: #003B66 !important; /* Đổi sang xanh đậm để nổi bật trên nền trắng */
    font-weight: bold;
    text-transform: none;
}

#navigationUser > li > a:hover {
    color: #017BCC !important; /* Đổi màu khi di chuột vào */
    text-decoration: underline;
}

/* 4. Căn giữa menu trên màn hình lớn */
@media (min-width: 1200px) {
    #nav-menu, #headerNavigationContainer > div:nth-child(1) {
        width: 1170px;
        margin: 0 auto;
    }
}

/* 5. Footer: Màu xanh JoGMM và ẩn logo rác */
footer[role="contentinfo"] {
    background: #017BCC !important;
    color: #fff !important;
    padding: 20px 0;
}

.pkp_brand_footer {
    display: none !important; /* Ẩn logo OJS/DHV ở chân trang */
}

.img-responsive{
    display: none !important; /* Ẩn logo OJS/DHV ở chân trang */
}

/* 6. Sidebar: Làm nổi bật nút Submission */
.pkp_block.block_make_submission a.action {
    background-color: #003B66 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
}