#srmAnalyticsTabs {
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #f4f4f4;
  border-top: 1px solid #ccc;
  padding: 10px 6px;
  z-index: 10;
}

.srm-charts-container {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px; /* Add spacing between plots */
  width: 100%;
  background-color: transparent;
  display: flex;
  position: relative; 
  flex-direction: row;
  font-size: 14px !important;
  border-radius: 0px;
  margin-top: 0rem;
  padding-right: 4px;
  padding-bottom: 50px; /* Reserve space for the footer */
}

.srm-plot-box {
  /* flex: 1 1 calc(50% - 20px);  Two per row on desktop */
   box-sizing: border-box;
 }

.srm-active-tab {
  background-color: #007bff;
  color: white;
  border: 1px solid #007BFF;
}

/* CSS for the mobile view of the left panel */
@media (max-width: 767px) {
  #srmChartsContainer {
    height: 100%;
  }
  .srmplot-box {
    flex: 1 1 100%; /* Full width on mobile */
  }
}
