/* Ensure the top bar is full width */
.masthead-container.basic {
    background-color: white; /* Keep white background */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align logo and button */
    padding: 10px 40px;
    height: 60px; /* Keep it compact */
    border-bottom: 1px solid #E0E0E0; /* Subtle bottom separator */

    width: 100%; /* Ensure full width */
    position: fixed; /* Fixed at top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Keep it above everything */
}
.masthead-container.basic .masthead{
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}
/* Push page content down so it doesn't overlap with the fixed top bar */
.layout-content {

    padding-top: 75px; 
}

/* Properly align the logo */
.logo-container {
    display: flex;
    align-items: center;
    flex: 1; /* Ensures it sticks to the left */
}

/* Ensure logo is properly sized */
.logo-container img {
    height: 35px;
    width: auto;
}

/* Define Monogoto pink color */
:root {
    --monogoto-pink: #E02E7E; /* Monogoto pink */
}

/* Push the subscribe area to the far right */
.updates-dropdown-container {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* Keep your button styling */
.show-updates-dropdown {
    background-color: var(--monogoto-pink);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    border: none;
}


/* Subscribe button hover effect */
.show-updates-dropdown:hover {
    background-color: #C02A6B; /* Slightly darker pink */
}

/* Completely remove "About This Site" title */
h4#about-this-site {
    display: none !important;
}

/* Reduce space between green bar and text section */
.text-section {
    margin-top: 10px !important; /* Reduce space to match the component table */
}

/* Change "+" button and tooltip "?" to Monogoto pink */
.group-parent-indicator,
.tooltip-base.tool {
    color: var(--monogoto-pink) !important;
}

/* Hover effect for "+" and "?" icons */
.group-parent-indicator:hover,
.tooltip-base.tool:hover {
    color: #C02A6B !important; /* Darker pink */
}

/* Remove blue shadow when clicking "+" button */
.group-parent-indicator:focus,
.group-parent-indicator:active {
    outline: none !important;
    box-shadow: none !important;