  .justservicecontainer {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;

  }

  .justserviceoptions-servicecontainer {
    width: 150px;
    flex-shrink: 0;
  }

  .justcontent-servicecontainer {
    width: 200px;
    flex-shrink: 0;
  }

  .justservices-servicecontainer {
    width: 400px;
    flex-shrink: 0;
  }

  .justserviceoption, .justcontent-item {
    padding: 8px 16px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-bottom: -1px;
  }

  .justserviceoption.selected {
    background-color: #234736;
    color: white;
  }

  .justserviceoption:hover:not(.selected), .justcontent-item:hover:not(.selected) {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .justcontent-item.selected {
    background-color: #234736;
    color: white;
  }

  .justcontent-panel, .justservice-panel {
    display: none;
  }

  .justcontent-panel.active, .justservice-panel.active {
    display: block;
  }

  .justservice-table {
    width: 100%;
    border-collapse: collapse;
  }

  .justservice-details {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .justtime {
    color: #666;
    text-align: right;
  }

  .justprice {
    color: #234736;
    text-align: right;
    white-space: nowrap;
  }

  .justselect-box-justservicecontainer {
    display: flex;
    justify-content: center;
  }

  .justselect-box {
    width: 24px;
    height: 24px;
    border: 2px solid #234736;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
  }

  .justselect-box.selected {
    background-color: #234736;
  }


.justselect-crossed {
    width: 24px;
    height: 24px;
    border: 2px solid #234736; /* Green border */
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.justselect-crossed::before,
.justselect-crossed::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: red; /* Red cross */
}

.justselect-crossed::before {
    transform: rotate(45deg);
}

.justselect-crossed::after {
    transform: rotate(-45deg);
}


  @media (max-width: 1000px) {
    .justservices-servicecontainer {
      width: 100%;
      order: 3;
    }
  }

  @media (max-width: 500px) {
    .justserviceoptions-servicecontainer,
    .justcontent-servicecontainer {
      width: 100%;
    }
    
    .justservicecontainer {
      gap: 10px;
    }

    .justservice-item {
      grid-template-columns: minmax(120px, 1fr) 70px 100px 40px;
      gap: 8px;
      padding: 12px 8px;
    }
  }

/* New tooltip styles */
  .justservice-item {
    position: relative;
  }

  .justdescription {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    max-width: 200px;
    z-index: 100;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    text-align: left;
  }

  .justservice-item:hover .justdescription {
    display: block;
  }

  /* Add arrow to tooltip */
  .justdescription::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(1, 0, 0, 0.8) transparent;
  }

  /* Keep grid layout but remove justdescription from normal flow */
  .justservice-item {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 80px 160px 50px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    gap: 16px;
  }

  @media (max-width: 500px) {
    .justdescription {
      left: 0;
      transform: none;
      max-width: calc(100vw - 40px);
    }
    
    .justdescription::before {
      left: 20px;
      transform: none;
    }
  }


