.inventory-suite-care-container {
  display: flex;
  width: 100%; /* Or any fixed width */
}
* {
  padding: 0;
  margin: 0;
}
.inventory-suite-care-container .left-block {
  position: sticky;
  left: 0px;
  background-color: #f0f0f0;
  /* z-index: 10000000; */
  width: 300px; /* Adjust as needed */
  flex-shrink: 0; /* Prevents left block from shrinking */
  border-right: 1px solid #ccc;
  .cv-header {
    /* position: fixed; */
    top: 0px;
    left: 0px;
    width: 301px;
  }
  .cv-body {
    /* margin-top: 35px; */
    /* height: 300px;
    overflow: auto; */
    ul:nth-of-type(odd) {
      background: #ffffff;
    }
  }
}

.inventory-suite-care-container .right-block {
  flex-grow: 1; /* Takes up remaining space */
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  position: relative;
  overflow: hidden;
  overflow-x: scroll;
  border-top: 1px solid #ccc;

  .month-headers {
    display: flex;
    height: 35px;
    /* position: fixed; */
    left: 301px;
    top: 0px;
    background: #ffffff;
    /* z-index: 9999999; */
  }

  .month-header {
    border-right: 1px solid #ccc;
  }
}

.cv-header ul,
.cv-body ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 35px;
}

.cv-header ul {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
}

.cv-header li,
.cv-body li {
  /* flex: 1; */
  padding: 10px;
  text-align: left;
  text-wrap: nowrap;
  overflow: hidden;
}

.cv-header li {
  font-weight: bold;
}

.cv-body ul {
  border-bottom: 0px solid #eee;
}

.cv-body ul:hover {
  background-color: #f8f8f8;
}

.cv-body li a {
  color: #0095ef;
  text-decoration: none;
  /* font-weight: 600;
  font-size: 15px; */
}

/* Ensure consistent width for each column */
.inventory-suite-care-container .cv-header li:nth-child(1),
.inventory-suite-care-container .cv-body li:nth-child(1) {
  width: 50%;
}
.inventory-suite-care-container .cv-header li:nth-child(2),
.inventory-suite-care-container .cv-body li:nth-child(2) {
  width: 20%;
}
.inventory-suite-care-container .cv-header li:nth-child(3),
.inventory-suite-care-container .cv-body li:nth-child(3) {
  width: 20%;
}
.inventory-suite-care-container .cv-header li:nth-child(4),
.inventory-suite-care-container .cv-body li:nth-child(4) {
  width: 10%;
}

.inventory-suite-care-container .month-headers {
  display: flex;
  height: 35px;
  font-size: small;
}

.inventory-suite-care-container .weekend-day {
  background-color: #6a6a6a; /* Example color, change to your preference */
  color: #ffffff;
}

.inventory-suite-care-container .gantt-canvas {
  position: absolute;
  top: 1000;
  left: 10000;
}

/* -----------Helper functions-------- */
.d-flex {
  display: flex;
}

.text-center {
  text-align: center;
}

.w-35 {
  width: 35px;
}

.h-35 {
  height: 35px;
}
.border {
  border: 1px solid #ccc;
}
/* ----------------------------------- */


/* .orderStatus{
  position: relative;
  height: 300px;
  overflow: auto;
} */

.month-headers{
  .monthName{
    border-bottom: 1px solid #ccc;
  }
  .dates{
    .day{
      font-size: 11px;
      font-weight: 600;
      padding: 2px 0 2px 0;
      background: #f1f1f1;
      &.weekend-day{
        background: #6a6a6a;
      }
    }
  }
}