/* Mobile Menu Fix Update - Remove duplicate close buttons */

/* Hide the logo in the mobile menu body to avoid duplication */
.mobile-menu-body .text-center.mb-4 {
    display: none !important;
}

/* Make the header logo more prominent */
.mobile-menu-header-logo {
    height: 60px;
    margin-left: 10px;
}

/* Ensure proper spacing in the mobile menu header */
.mobile-menu-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ensure the close button is properly styled */
.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Add some space at the top of the menu body */
.mobile-menu-body {
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-menu-header-logo {
        height: 50px;
    }
}