/* Icon fixes for better visibility */

/* Make sure mobile menu toggle is visible in light mode */
body:not([data-theme="dark"]) .mobile-menu-toggle button i {
    color: #2D3142 !important; /* Dark gray for visibility in light mode */
    font-size: 1.6rem;
}

body[data-theme="dark"] .mobile-menu-toggle button i {
    color: #FFFFFF !important; /* White for dark mode */
}

/* Additional contrast for the menu icon */
.mobile-menu-toggle button {
    padding: 8px !important;
    border-radius: 50%;
}

/* Hover effect for better user feedback */
.mobile-menu-toggle button:hover {
    background-color: rgba(79, 143, 192, 0.1) !important;
}

body[data-theme="dark"] .mobile-menu-toggle button:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Ensure the menu button is easily clickable */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

/* Override any other styles that might be affecting visibility */
.site-header .mobile-menu-toggle button i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Make close button more visible too */
#close-menu-btn i {
    color: #2D3142;
    font-size: 1.5rem;
}

[data-theme="dark"] #close-menu-btn i {
    color: #FFFFFF;
}
