/* Mobile header - visible only on small screens */
.planovo-mobile-header {
  display: none;
}

@media (max-width: 991px) {
  .planovo-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #2b38e9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001; /* Higher than mobile nav */
    border-bottom: 1px solid #1e2bb8;
  }

  .mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
  }

  .mobile-burger-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-burger-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .mobile-logo {
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .mobile-logo:hover {
    opacity: 0.8;
  }

  .mobile-logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
  }

  /* #mainContent, .umb-app-content, umb-app-content {
    top: 63px !important;
  } */

  /* Add top padding to main content to account for mobile header */
  /* #mainwrapper {
    padding-top: 80px !important;
  } */

  .welcome-container {
    padding: 0 5px;
  }

  /* Add extra margin to the first umb-box to ensure welcome content is visible */
  /* .job-planning-welcome .umb-box:first-child {
    margin-top: 55px !important;
  } */

  /* Hide the default Umbraco header on mobile */
  .umb-app-header {
    display: none !important;
  }
}

/* Hide mobile header on desktop */
@media (min-width: 992px) {
  .planovo-mobile-header {
    display: none !important;
  }
}
