    .support-list {
      height: 100%;
      overflow-y: auto;
      border-right: 2px solid #ddd;
      
    }
    .offcanvas-start {
      width: 70% !important;
    }

  .container-fluid {
    height: 100%;
  }

  .separator {
    width: 1px;
    background-color: #ddd;
  }

  .support-box {
    /* flex-grow: 1; */
    height: 100%;
    overflow-y: auto;
    /* padding-top: 20px; */
  }
  .list-group {
    border: none;
  }

.support-message {
    background-color: #e0e0e0; /* Light gray for support */
    text-align: left;
    margin: 10px 0px 3px 10px;
    padding:3px;
    max-width: 80%;
    border-radius:4%;
  }

  /* User (right side) message */
  .user-message {
    background-color: #d8fdd3; /* #007bff; /* Blue for user */
    color: 000;
    /* text-align: right; */
    align-self: flex-end;
    margin: 10px 10px 3px 0px;
    padding:3px;
    max-width: 80%;
    border-radius:4%;
  }


  /* Add border to each list item */
  .list-group-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 2px;
    cursor: pointer;
  }


.message img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}






    .form-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .form-control, .btn {
      border-radius: 5px;
    }

    .drag-area {
      border: 2px dashed #007bff;
      border-radius: 5px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      margin-top: 20px;
    }

    .drag-area:hover {
      background-color: #f0f8ff;
    }

    .drag-area.active {
      background-color: #e9ecef;
    }

    .icon-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
    }

    .icon-container i {
      font-size: 30px;
      cursor: pointer;
      transition: 0.3s ease-in-out;
    }

    .icon-container i:hover {
      color: #007bff;
      transform: scale(1.1);
    }

    .image-preview-container {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .image-preview-container img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 5px;
    }

    .remove-preview {
      position: absolute;
      top: 0;
      right: 0;
      background-color: rgba(255, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      padding: 2px;
      cursor: pointer;
    }

    .image-preview-wrapper {
      position: relative;
      display: inline-block;
    }


















/*============Admin CSS=================*/
    .support-container {
      display: flex;
      flex-direction: column;
      height: 100vh;
      padding: 20px;
    }

    .support-sidebar {
      /* width: 300px; */
      border-right: 1px solid #ddd;
      padding-right: 20px;
      max-height: 100%;
      overflow-y: auto;
    }


    .message {
      margin-bottom: 15px;
    }

    .message .text {
      max-width: 400px;
      word-wrap: break-word;
    }

    .message.user .text {
      background-color: #007bff;
      color: white;
      padding: 10px;
      border-radius: 10px 10px 0 10px;
    }

    .message.support .text {
      background-color: #f8f9fa;
      color: #333;
      padding: 10px;
      border-radius: 10px 10px 10px 0;
    }

    .status-badge {
      border-radius: 10px;
      padding: 3px 12px;
    }

    .status-badge.open {
      background-color: #f39c12;
      color: white;
    }

    .status-badge.in-progress {
      background-color: #3498db;
      color: white;
    }

    .status-badge.closed {
      background-color: #2ecc71;
      color: white;
    }
    
    .form-select:focus {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
    }
    .form-select:hover {
        background-color: #f1f1f1;
    }