/* responsive.css */

@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(6, 1fr); /* Reduce to 6 columns */
    }

    .layer-1, .layer-2 {
        display: none; /* Hide sidebars on smaller screens */
    }

    .layer-4 {
        grid-column: 1 / -1; /* Main stage spans full width */
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto;
    }

    .layer-3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .layer-4 {
        padding: 10px;
    }
}
@media (max-width: 768px) {
  .main-container {
      flex-direction: column;
      height: auto; /* Allow height to adjust to content */
  }
  /* responsive.css */
@media (max-width: 768px) {
    .collaborators-container {
        width: 90%; /* Take up more width on smaller screens */
        max-height: 150px; /* Reduce max height */
    }
   .agentMainChatActions .slider-control-container {
        width: 100%; /* Adjust width as needed */
        padding: 10px; /* Adjust padding as needed */
     }
} 
  .services-navigation, .custom-tools {
      flex: 0 0 auto; /* Allow content to determine the height */
      width: 100%; /* Full width on small screens */
      order: 1;
  }

  .main-stage {
      order: 2;
  }

  .header-container {
    flex-direction: column;
    text-align: center;
  }
   .logo {
      margin-right: 0; /* Reset margin for small screens */
      text-align: center; /* Center the logo on small screens */
      padding-left: 0;
  }

  .user-account {
      margin-left: 0; /* Reset margin for small screens */
      text-align: center; /* Center the user account on small screens */
      padding-right: 0;
  }
  .page-name {
      margin-left: 0; /* Reset margin for small screens */
      text-align: center; /* Center the page name on small screens */
  }
}