/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.site-info {
    display: none;
}

/* #left-sidebar{
    position: fixed;
	width: 25%;
}


#primary{
    margin-left: 30%;
} */

/* Style for the entire menu container */
#menu-main-menu {
    border-collapse: separate; /* Similar to table styling */
    border-spacing: 2px; /* Spacing between items */
    list-style-type: none; /* Remove bullets from list */
    padding: 0;
    margin: 0;
}

/* Style for each menu item (li elements) */
#menu-main-menu li {
    text-align: left; /* Align text to the left */
    /*background-color: rgb(0, 0, 0); Set background color to black */
    height: 35px; /* Set height of each menu item */
    line-height: 35px; /* Vertically center text within the 50px height */
    margin-bottom: 2px; /* Add space between menu items */
}

/* Style for the links inside the menu (a elements) */
#menu-main-menu li a {
    display: block; /* Ensure the entire area is clickable */
    color: black; /* Set text color to white for contrast */
    text-decoration: none; /* Remove underline */
    padding-left: 15px; /* Add some padding on the left */
    font-size: medium; /* Set font size to medium */
    font-weight: normal; /* Ensure normal font weight */
}

/* Style for the currently active menu item (optional) */
#menu-main-menu li.current-menu-item a {
    background-color: rgb(50, 50, 50); /* Slightly different background for the active item */
	color: white; /* Set text color to white for contrast */
    font-weight: bold; /* Bold font for active item */
}