/* 1. Header & Logo: Cân đối kích thước và khoảng cách */
.navbar-brand {
    height: 120px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

/* 2. Menu chính: Màu sắc đồng bộ và chữ in hoa đậm */
#nav-menu, 
#nav-menu .btn, 
#headerNavigationContainer > div:nth-child(2) {
    text-transform: uppercase;
    font-weight: bold;
    background-color: #003B66;
    color: #fff;
    border: none;
}

.navbar-default .nav > li > a {
    color: #fff !important;
}

.navbar-default .nav > li > a:hover {
    background-color: #002C40 !important;
    color: #fff !important;
}

/* 3. Menu người dùng (Login/Register) */
#navigationUser > li > a {
    color: #002C40;
    font-weight: bold;
}

/* 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: Làm đẹp nội dung địa chỉ, email và bản quyền */
footer[role="contentinfo"] {
    background: #017BCC !important;
    color: #fff !important;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 4px solid #003B66;
}

footer[role="contentinfo"] .container {
    line-height: 1.8;
}

footer[role="contentinfo"] a {
    color: #fff;
    text-decoration: underline;
}

/* 6. Sidebar: Làm nổi bật nút Gửi bài (Make a Submission) */
.pkp_block.block_make_submission a.action {
    background-color: #003B66 !important;
    color: #fff !important;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    display: block;
    transition: background 0.3s ease;
}

.pkp_block.block_make_submission a.action:hover {
    background-color: #017BCC !important;
    text-decoration: none;
}

/* 7. Tối ưu hiển thị khối Thông tin (Information Block) */
.pkp_block.block_information .content {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #017BCC;
}

/* 8. Fix hiển thị hình ảnh Logo trên di động */
@media (max-width: 767px) {
    .navbar-brand {
        height: auto;
        max-width: 200px;
    }
    .navbar-brand img {
        width: 100%;
        height: auto;
    }
}

/* Ẩn logo và dòng chữ OJS ở chân trang */
.pkp_structure_footer .pkp_brand_footer {
    display: none !important;
}