/* FOR HEIGHT ISSUE */

#chat-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dispute-chat-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.dispute-chat-footer {
  flex-shrink: 0;
}


#contactContainer {
  position: absolute;
  inset: 0;
}

#disputeContainer {
  position: absolute;
  inset: 0;
}




body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

h1 {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-align: center;
}

p {
  color: #555;
  font-size: 1.2em;
  text-align: center;
}

#chat-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;  /* IMPORTANT for flex scroll */
}

/* Notification dot for minimized chat */
.dispute-chat-notification-dot {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 14px;
  height: 14px;
  background: #2684ff;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 2;
  display: none;
}

/* Show the dot when .show-dot is present */
.dispute-chat-notification-dot {
  display: block;
}

.hidden {
  display: none !important;
}

.dispute-chat-header {
  color: black;
  padding: 6px 12px 6px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  background: white;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.dispute-chat-header button {
  background: none;
  border: none;
  color: lightslategray;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

/* .dispute-chat-header button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
} */


.dispute-chat-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.dispute-chat-bodyForm {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.message {
  max-width: 100%;
  padding: 10px;
  border-radius: 10px;
  line-height: 1.4;
  font-size: 0.95em;
  position: relative;
  word-wrap: break-word;
  display: flex;
  align-items: center;
}

.user-message {
  align-self: flex-end;
  background: #3276CF;
  color: white;
  margin-left: auto;
  word-wrap: anywhere;
}

.user-message-card {
  align-self: flex-end;
  color: white;
  margin-left: auto;
}

.payment-option-message {
  align-self: flex-end;
  color: #333;
  margin-left: auto;
  width: 85%;
}

/* .bot-message {
  align-self: flex-start;
  background: white;
  color: #333;
} */

.bot-message {
  display: flex;
  justify-content: flex-start;
}

.bot-message.success {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.payment-option {
  background: #F2F5FA;
  border-radius: 12px;
  padding: 16px;
}

.payment-option h4 {
  margin: 0 0 12px 0;
  color: #2c3e50;
  font-size: 1em;
}

.case-reference {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0px;
  margin: 8px 0;
  font-family: monospace;
  border-top: 1px solid #E0E0E0;
}

.case-reference label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.label-text {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  justify-content: start;
  width: 100%;
  margin-bottom: 8px;
}

.label-text:last-child {
  margin-bottom: 0;
}

.label-text strong {
  justify-self: end;
  font-weight: bold;
  color: #757575;
  font-weight: 400;
}

.input-field {
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95em;
  transition: border-color 0.2s;
  background: white;
}

.input-field:focus {
  outline: none;
  border-color: #6a11cb;
}

.dispute-chat-footer {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 0;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.dispute-chat-footer input[type="text"] {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: #f5f5f5;
  border-radius: 24px;
  font-size: 1em;
  outline: none;
  color: #333;
  box-shadow: none;
}

.dispute-chat-footer input[type="text"]::placeholder {
  color: #888;
  opacity: 1;
}

.dispute-chat-footer button#send-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
  transition: background 0.2s;
}

.dispute-chat-footer button#send-btn:hover {
  background: #e0e0e0;
}

.dispute-chat-footer button#send-btn svg {
  width: 22px;
  height: 22px;
  fill: #888;
  pointer-events: none;
}

.timestamp {
  font-size: 0.75em;
  color: #888;
  text-align: right;
}

.user-timestamp {
  color: rgba(255, 255, 255, 0.8);
}

.bot-timestamp {
  color: #888;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom scrollbar */
.dispute-chat-body::-webkit-scrollbar {
  width: 6px;
}

.dispute-chat-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.dispute-chat-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.dispute-chat-body::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.header-endcontent {
  display: flex;
  gap: 4px;
  align-items: center;
}

.header-startcontent {
  display: flex;
  gap: 4px;
  align-items: center;
}

.profileimg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  background-color: #c2d7f2;

}

.dispute-chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
}

.dispute-chat-container {
  font-size: 0.7em;
  padding: 10px;
}

.dispute-chat-intro-message.mia {
  display: flex;
  justify-content: space-between;
}

.dispute-chat-container {
  margin-top: -150px;
  position: absolute;
  background: #ffffff;
  /* Light gray background for speech bubble */
  border-radius: 12px;
  padding: 10px 12px;
  max-width: 400px;
  width: fit-content;
  margin-left: -126px;
  /* Space for the arrow */
}

/* Speech bubble arrow pointing left */
.dispute-chat-container::before {
  content: '';
  position: absolute;
  right: 16px;
  /* Position the arrow to the left of the bubble */
  bottom: -10px;
  /* Adjust to align with text */
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  /* Same color as bubble background */
}

.dispute-chat-intro-message.mia .dispute-chat-profileimg {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid white;
  background-color: #c2d7f2;
}

.dispute-chat-intro-message.mia span {
  font-weight: bold;
}

.dispute-chat-intro-message button {
  background: none;
  border: none;
  color: lightslategray;
  font-size: 2em;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

/* Responsive full-screen popup for mobile and tablet */
@media (max-width: 1024px) {
  body {
    background: #f5f5f5 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    min-height: 100vh !important;
  }

  h1 {
    display: none !important;
  }

  p {
    display: none !important;
  }

  .dispute-chat-header {
    font-size: 1.2em !important;
    padding: 20px 16px !important;
    height: 60px;
    box-sizing: border-box;
  }

  .dispute-chat-footer {
    padding: 12px 8px !important;
    background: white !important;
    height: 80px;
    box-sizing: border-box;
  }

  .dispute-chat-container {

    right: 0%;
    /* left: 50% !important; */
    transform: translateX(-16%) !important;
    margin-left: 0 !important;
    margin-top: 24px !important;
    /* position: relative !important; */
    padding: 10px 6px !important;
    height: auto !important;

  }

  .dispute-chat-container::before {
    right: 24px !important;
    border-left: 10px solid #ffffff !important;
  }


}



/* Additional mobile-specific adjustments */
@media (max-width: 600px) {
  body {
    font-size: 16px !important;
  }

  .dispute-chat-header {
    padding: 16px 12px !important;
    font-size: 1.1em !important;
    height: 56px;
  }

  .message {
    max-width: 100% !important;
    font-size: 0.95em !important;
  }


  .payment-option {
    padding: 12px !important;
    margin: 8px 0 !important;
  }

  .payment-option-message {
    width: 90% !important;
  }

  .dispute-chat-footer {
    height: 72px;
    padding: 10px 8px !important;
  }
}



.btn {
    display: inline-flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
    width: max-content;
    padding: 6px 14px;       /* smaller vertical padding */
    font-size: 14px;
    line-height: 1.2;
    border-radius: 6px;
    cursor: pointer;
}

.btn-blue {
  background-color: #3276CF; /* Bootstrap blue */
  color: #fff;
  border: none;
}

/* #disputePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;   
  height: 100vh;  
  background: rgba(0,0,0,0.6);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  width: 90vw;   
  max-width: 400px;  
  height: auto;  
  max-height: 90vh; 
  background: #fff;
  overflow: auto; 
  border-radius: 8px;
  padding: 10px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
} */

/* Mobile specific */
@media (max-width: 768px) {
    .popup-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

/* .form-section {
    margin-top: 15px;
} */



.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 0;
}



.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d9d9d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.step-label {
    margin-top: 6px;
    font-size: 12px;
    color: #9e9e9e;
    text-align: center;
}

.step-separator {
    height: 2px;
    background: #e0e0e0;
    flex: 1;
    margin: 0 6px;
}

/* .custom-container .intro-text {
  display: none !important;
} */

#customContainer {
    flex: 1;
    overflow-y: auto;
}

.custom-container {
    height: 100%;
    max-height: 600px;        /* match popup height */
    overflow-y: auto;         /* vertical scrollbar */
    overflow-x: hidden;       /* no horizontal scroll */
}

/* Sticky header */
.sticky-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding-bottom: 10px;
}

/* Scroll container */
#form-container {
    flex: 1;
    overflow: hidden;
}

/* Each step scrolls independently */
/* .form-section {
    height: 100%;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 90px; space for button */
    
/* } */

.form-group {
    margin-bottom: 20px;
}


/* Scrollbar style (optional) */
.form-section::-webkit-scrollbar {
    width: 6px;
}

.form-section::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 10px;
}

body.app-type .dispute-chat-minimize-btn,
body.app-type .dispute-chat-close-btn {
  display: none !important;
}

/* Overlay */
.popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;   /* IMPORTANT */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;     /* full screen */
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 15px;
}

/* Popup Box */
.popup-content {
    background: #ffffff;
    width: 100%;
    max-width: 420px;   /* Mobile card width */
    max-height: 95vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}


/*----------------    new initial chat    ----------------------------*/
.dispute-chat-home-screen {
  padding: 20px;
  text-align: center;
}

.home-avatar {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.home-title {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 500;
}

.home-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.2s ease;
}

.home-card:hover {
  background: #f5f5f5;
}

.summary-card-button-wrapper {
  display: flex;
  justify-content: center; /* center horizontally */
  margin-top: 12px;       /* space from message above */
}


/* FOR SUMMARY CARD */

.dispute-summary-card {
  background: #eef1f5;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  color: #000;
}

.dispute-summary-card .card-body {
  color: #000;
}

.dispute-summary-card .card-body div {
  color: #000;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-body {
  font-size: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.view-more-btn {
  text-align: center;
  color: #2463eb;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

/* .bot-confirmation {
  margin: 10px 0;
} */

.file-attachment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 10px;
}

.pdf-icon {
  background: red;
  color: white;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
}



/* ENTER DETAILS Button */

.summary-card-button-wrapper {
    display: flex;
    justify-content: center; /* center horizontally */
}


/* Hover Effect */
.enter-details-btn:hover {
  background-color: #2f6fdf;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(47, 111, 223, 0.3);
}

/* Active Click Effect */
.enter-details-btn:active {
  transform: scale(0.98);
}

/* Send button */
#send-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

/* Optional: slight hover effect */
#send-btn:hover {
  opacity: 0.8;
}

.divider {
    border-top: 1px solid #ccc;
    margin: 12px 0;
}

.summary-value {
    color: #000;
    text-align: right;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.summary-label {
    width: 45%;
    font-weight: 500;
    font-size:13px;
}

.summary-value {
    width: 55%;
    text-align: start;
    word-break: break-word;
    font-size:13px;
}



/*Form.css*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
}

.dispute-chat-position {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/*** Chat Window ****/

.dispute-chat-window {
    border-radius: 16px;
    border: 1px solid var(--Grey-300, #E0E0E0);
    background: #FFF;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dispute-chat-form-header {
    display: flex;
    height: 56px;
    padding: 8px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.dispute-chat-form-footer {
    display: flex;
    padding: 16px 12px;
}

.footer-action {
    display: flex;
    flex: 1 1 auto;
}

.footer-action.left {
    justify-content: start;
}

.footer-action.right {
    justify-content: end;
}

.back-btn-lt {
    display: flex;
    justify-content: center;
    align-items: center;
}


.icon-btn {
    background: transparent;
    border: 0px;
    color: #757575;
    display: flex;
    padding: 5px;

}

.mia-avatar.small {
    height: 24px;
    width: auto;
    margin-left: -4px;
}

.form-title {
    overflow: hidden;
    color: var(--Text-Primary, #212121);
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
    /* 32px */
    letter-spacing: 0.15px;
}

.button {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.button .right-icon {
    margin-right: -8px;
}

.button .left-icon {
    margin-left: -8px;
}

.button.primary-btn {
    color: #fff;
    background: #3276CF;
    border-color: transparent;
}

.button.teritary-btn {
    color: #3276CF;
    background: transparent;
    border-color: transparent;
}

.button.outline-btn {
    background-color: transparent;
    border: 1px solid #A2C1EA;
    color: #3276CF;
}

.dispute-chat-dispute-form-stepper {
    padding: 16px;
    display: flex;
    border-top: 1px solid var(--Grey-200, #EEE);
    border-bottom: 1px solid var(--Grey-200, #EEE);
    background: linear-gradient(90deg, var(--Primary-50, #DEE8F7) 0%, rgba(242, 245, 250, 0.00) 100%);
}

.dispute-stepper-step {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    gap: 8px;
}

.dispute-step-count {
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #BDBDBD;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 0.4px;
}

.dispute-step-name {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    line-height: 143%;
    letter-spacing: 0.17px;
}

.dispute-stepper-step.active .dispute-step-count,
.dispute-stepper-step.complete .dispute-step-count {
    background: #3276CF;
}

.dispute-stepper-step.active .dispute-step-name,
.dispute-stepper-step.complete .dispute-step-name {
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 157%;
    letter-spacing: 0.1px;
}

/**** chatform body *******/

.dispute-chat-form-body {
    height: calc(100% - 218px);
    padding: 16px 16px 16px 16px;
    overflow: auto;
    min-height: 0;
}

.input-field-lt {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.input-field-lt.column {
    flex-direction: column;
}

.input-field-lt.row {
    flex-direction: row;
}

.input-label {
    color: var(--Text-Primary, #212121);
    font-size: 14px;
    font-weight: 400;
    line-height: 143%;
    letter-spacing: 0.17px;
    margin-top: auto;
    margin-bottom: auto;
}

.input-box {
    height: 40px;
}

.input-box,
.textarea-box {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--Grey-400, #BDBDBD);
    background: var(--Default-White, #FFF);
}

.textarea-box {
    resize: vertical;
}


.input-box:focus,
.input-box:focus-visible,
.num-input-box:focus,
.num-input-box:focus-visible {
    border-width: 2px;
    border-color: #3276CF !important;
    outline: transparent;
}

.number-input-lt {
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--Grey-400, #BDBDBD);
    background: var(--Default-White, #FFF);
}

.num-input-box {
    text-align: center;
    border: 0px;
    width: 100%;
}

.form-section-heading {
    color: var(--Text-Primary, #212121);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.15px;
}

.form-subheading {
    color: #212121;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.16px;
    margin-bottom: 16px;
}

.form-info-txt {
    color: var(--grey-600, #757575);
    font-size: 12px;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 0.4px;
}

.file-upload-lt {
    display: flex;
    padding: 24px 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px dashed var(--Grey-400, #BDBDBD);
}

.file-type-info {
    color: #8E9092;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 143%;
    letter-spacing: 0.17px;
}

.uploaded-card {
    max-height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 12px 0px;
    border-radius: 8px;
    border: 1px solid #EEE;
    width: 100%;
}

.uploaded-file-name {
    width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uploaded-file-size {
    margin-top: 2px;
    color: #757575;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.16px;
}

.chip-btn {
    color: var(--Text-Primary, #212121);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.462%;
    letter-spacing: 0.16px;
    border-radius: 100px;
    border: 1px solid var(--Grey-400, #BDBDBD);
    padding: 7px;
    flex: 1 1 auto;
    background-color: transparent;
}

.chip-btn.active {
    background-color: #3276CF;
    color: #fff;
    border-color: #3276CF;
}

.dispute-form-error-message {
    display:none;
    color: red;
    font-size: 13px;
    margin-top: 4px;
}
.dispute-form-error-message.show {
    display: block;
}
.input-box.error {
    border: 2px solid red !important;
}
/* Spinner Load */

.custom-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-left: 6px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.optional-text {
    font-size: 12px;      /* smaller size */
    color: #6c757d;       /* Bootstrap grey */
    font-weight: normal;  /* remove bold if label is bold */
    margin-left: 4px;     /* small spacing */
}

.required {
    color: #d93025;   /* Red */
    font-size: 14px;  /* Slightly smaller */
    margin-left: 4px;
}

.dispute-chat-form-stepper {
    padding: 16px;
    display: flex;
    border-top: 1px solid var(--Grey-200, #EEE);
    border-bottom: 1px solid var(--Grey-200, #EEE);
    background: linear-gradient(90deg, var(--Primary-50, #DEE8F7) 0%, rgba(242, 245, 250, 0.00) 100%);
}