/* Mobile header styles */
.mobile-header-title {
  display: none;
}

.mobile-header-title h2 {
  font-size: 18px;
  margin: 0;
}

/* Empty placeholder div to help with spacing */
.header-placeholder {
  width: 40px; /* Same width as menu button */
  visibility: hidden; /* Hidden but takes space */
}

/* For mobile devices */
@media (max-width: 768px) {
  .mobile-header-title {
    display: block;
    flex-grow: 1; /* Take up available space */
    text-align: center; /* Center the text */
  }
  
  /* Move the Social Voice title to the center on mobile */
  .header-area {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly */
    padding: 0 10px; /* Add some padding on both sides */
  }
  
  /* Adjust the mobile menu toggle position */
  .mobile-menu-toggle {
    position: relative; /* Override fixed positioning */
    left: 0;
    top: 0;
  }
  
  /* Hide the title in sidebar when in mobile view to avoid duplication */
  .sidebar-header {
    display: none;
  }
}
