body {
  margin: 0;
  color: #253977;
  /* FIX: Use the correct font-family name and set a default weight. */
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* 400 is 'Regular' */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
.navigation-bar {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #f0f0f0;
    position: relative;
    min-height: 60px;
    flex-wrap: wrap; 
    justify-content: space-between;
}

.nav-group-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}

.nav-group-right {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    height: 100%;
}

/* Base style for both <Link> and <button> nav items */
.nav-item, .nav-item-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    height: 100%;
    text-decoration: none;
    color: #253977;
    cursor: pointer;
    font-size: 1.2rem;
    /* FIX: Changed font to Inter and set a specific weight */
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* 500 is 'Medium' */
    border: none;
    background-color: transparent;
    white-space: nowrap;
}

.nav-item:hover, .nav-item-button:hover {
    background-color: #ddd;
}

/* Specific highlight for interview signup */
.nav-item-highlight {
    background-color: #e3f2fd;
    border-radius: 8px;
    margin: 0 5px;
}

.site-logo {
    max-height: 225px;
    max-width: 95%;
}

.logout {
    margin-left: auto;
}

/* Keep old custom dropdown styles for now, although it's being replaced by MUI Menu */
.user-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.user-dropdown {
    position: absolute;
    top: 50px; 
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 0;
    display: none; 
    flex-direction: column;
    z-index: 1000;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
}

.user-dropdown.open {
    display: block;
}

.user-dropdown a,
.user-dropdown button {
    padding: 10px 20px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #253977; 
    text-decoration: none;
    font-weight: normal; 
    display: block;
    width: 100%;
    box-sizing: border-box; 
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background-color: #f0f0f0;
}

/* Responsive Styles */
.responsive-menu-button {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}


@media screen and (max-width: 900px) {
    .navigation-bar {
        flex-wrap: wrap; 
    }

    .nav-group-left, .nav-group-right {
        display: none;
        width: 100%;
    }

    .navigation-bar.responsive {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation-bar.responsive .nav-group-left,
    .navigation-bar.responsive .nav-group-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .navigation-bar.responsive .nav-group-right {
        margin-left: 0;
        margin-top: 10px;
    }

    .navigation-bar.responsive .nav-item,
    .navigation-bar.responsive .nav-item-button {
        padding: 10px 0;
        width: 100%;
        justify-content: flex-start;
    }

    .responsive-menu-button {
        display: block; 
        position: absolute;
        top: 15px;
        right: 20px;
    }
}
body {
  /* This body selector can be removed if index.css is loaded first,
     but it's good practice to ensure consistency. */
  color: #253977;
  /* FIX: Use the correct font-family name and set a default weight. */
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* 400 is 'Regular' */
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* Optional: If specific MUI components are still light gray, target them */
.MuiTypography-root {
  color: #253977;
}

/* Ensure links have a distinct, readable color */
a {
  color: #007bff;
}

a:hover {
  color: #0056b3;
}

/* --- Existing Styles --- */
.App-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* This new container makes the banners inside it stick to the top of the viewport */
.sticky-banner-area {
    position: sticky;
    top: 0;
    z-index: 1301; /* Ensure banners are on top of other content */
}

.App-logo {
    height: 40vmin;
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .App-logo {
        animation: App-logo-spin infinite 20s linear;
    }
}

.App-header {
    background-color: #282c34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.App-link {
    color: #61dafb;
}

@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Style the main content area */
.main-content {
  padding: 50px;
  flex-grow: 1;
  border: 10px solid #ccc;
  border-radius: 15px;
}

/* All margin-top rules related to active banners have been removed */
/* as the natural document flow and the new sticky container handle the layout correctly. */
