/* ===============================================
   AGENTES PORTAL LIGHT THEME CUSTOM STYLES
   =============================================== */

/* === LIGHT THEME OVERRIDES === */
[data-bs-theme="light"] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #212529;
  --bs-secondary-bg: #f8f9fa;
  --bs-tertiary-bg: #e9ecef;
  --bs-border-color: #dee2e6;
  --bs-secondary-color: #6c757d;
}

/* === CONVERSATION ELEMENTS === */
[data-bs-theme="light"] .conversation-item {
  background-color: #ffffff;
  border-color: #dee2e6;
  color: #212529;
}

/* === WHATSAPP MESSAGE ENHANCEMENT STYLES === */

/* Translation toggle button active state */
[data-bs-theme="light"] .translate-btn.active {
  color: #0d6efd !important;
  font-weight: bold;
}

[data-bs-theme="dark"] .translate-btn.active {
  color: #6ea8fe !important;
  font-weight: bold;
}

/* Message showing sent version (translated) - only italic style */
.message-text.showing-sent-version {
  font-style: italic;
}

/* RAG-generated message styling */
[data-bs-theme="light"] .message-bubble.rag-generated {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%) !important;
  border-left: 4px solid #4caf50;
  box-shadow: 0 1px 3px rgba(76, 175, 80, 0.2);
}

[data-bs-theme="dark"] .message-bubble.rag-generated {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%) !important;
  border-left: 4px solid #66bb6a;
  box-shadow: 0 1px 3px rgba(102, 187, 106, 0.2);
}

/* RAG badge styling - inline with message metadata */
[data-bs-theme="light"] .message-bubble.rag-generated .badge.bg-info {
  background: #4caf50 !important;
  color: white;
  font-weight: 600;
  padding: 3px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

[data-bs-theme="dark"] .message-bubble.rag-generated .badge.bg-info {
  background: #66bb6a !important;
  color: #1b5e20;
  font-weight: 600;
  padding: 3px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

[data-bs-theme="light"] .message-tools,
[data-bs-theme="light"] .message-analysis {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .message-translation-toggle, 
[data-bs-theme="light"] .message-analysis-toggle {
  font-size: 0.875rem;
  color: #6c757d;
  text-decoration: none;
  padding: 0.25rem 0;
}

[data-bs-theme="light"] .message-translation-toggle:hover, 
[data-bs-theme="light"] .message-analysis-toggle:hover {
  color: #0d6efd;
  text-decoration: underline;
}

[data-bs-theme="light"] .message-translation, 
[data-bs-theme="light"] .message-analysis-content {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  border-left: 3px solid #0d6efd;
}

[data-bs-theme="light"] .translation-content {
  font-style: italic;
}

[data-bs-theme="light"] .analysis-details {
  font-size: 0.875rem;
}

[data-bs-theme="light"] .message-bubble {
  position: relative;
}

[data-bs-theme="light"] .message-row.inbound .message-translation,
[data-bs-theme="light"] .message-row.inbound .message-analysis-content {
  background-color: rgba(108, 117, 125, 0.1);
  border-left-color: #6c757d;
}

[data-bs-theme="light"] .message-row.outbound .message-translation,
[data-bs-theme="light"] .message-row.outbound .message-analysis-content {
  background-color: rgb(126, 164, 220);
  border-left-color: #0d6efd;
}

/* === ULTRA-COMPACT HEADER STYLES === */
[data-bs-theme="light"] .sidebar-header-compact {
  background-color: #0077b6;
  border-bottom: 1px solid #dee2e6;
  min-height: 64px;
  padding: 8px 12px !important;
}

[data-bs-theme="light"] .header-actions .btn-xs {
  padding: 0.25rem 0.4rem;
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 0.25rem;
}

[data-bs-theme="light"] .management-panel {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

[data-bs-theme="light"] .management-panel.show {
  display: block !important;
}

[data-bs-theme="light"] .panel-section {
  padding: 8px 12px;
}

/* === SORT DROPDOWN OPTGROUP STYLING === */
[data-bs-theme="light"] #sortFilter optgroup {
  background-color: #e9ecef !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: #495057 !important;
  padding: 4px 8px !important;
}

[data-bs-theme="light"] #sortFilter option {
  background-color: #ffffff !important;
  color: #212529 !important;
  padding-left: 16px !important;
}

/* === COMPACT TABLE-LIKE CLIENT LIST === */
[data-bs-theme="light"] .client-item-micro {
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 28px;
  padding: 0;
}

[data-bs-theme="light"] .client-item-micro:hover {
  background-color: #f8f9fa;
}

[data-bs-theme="light"] .client-item-micro.active {
  background-color: #e3f2fd;
}

[data-bs-theme="light"] .client-row-compact {
  display: grid;
  grid-template-columns: 1fr 50px minmax(200px, auto);
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: 40px;
  width: 100%;
  overflow: visible;
}

[data-bs-theme="light"] .client-name-compact {
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  line-height: 1.4;
}

[data-bs-theme="light"] .client-owner-compact {
  min-width: 50px;
  width: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-bs-theme="light"] .client-badges-compact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: visible;
  overflow-y: hidden;
  scrollbar-width: none;
  min-width: 200px;
}

[data-bs-theme="light"] .client-badges-compact::-webkit-scrollbar {
  display: none;
}

/* Fixed column widths for perfect alignment */
[data-bs-theme="light"] .col-time {
  font-size: 0.75rem;
  min-width: 35px;
  display: inline-block;
  text-align: left;
}

[data-bs-theme="light"] .col-phone {
  font-size: 0.75rem;
  min-width: 90px;
  display: inline-block;
}

[data-bs-theme="light"] .col-sentiment {
  font-size: 0.9rem;
  min-width: 22px;
  display: inline-block;
  text-align: center;
}

[data-bs-theme="light"] .col-priority {
  font-size: 0.6rem;
  min-width: 45px;
  display: inline-block;
}

[data-bs-theme="light"] .col-complaint {
  font-size: 0.6rem;
  min-width: 50px;
  display: inline-block;
}

[data-bs-theme="light"] .col-vip {
  font-size: 0.6rem;
  min-width: 35px;
  display: inline-block;
}

[data-bs-theme="light"] .col-clienttype {
  font-size: 0.6rem;
  min-width: 55px;
  display: inline-block;
}

[data-bs-theme="light"] .col-lang {
  font-size: 0.65rem;
  min-width: 30px;
  display: inline-block;
}

[data-bs-theme="light"] .col-delete {
  padding: 2px 4px;
  border: none;
  background: none;
  color: #dc3545;
  opacity: 0.5;
  font-size: 0.8rem;
  min-width: 24px;
  width: 24px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

[data-bs-theme="light"] .col-delete:hover {
  opacity: 1;
}

/* Status-based background colors */
[data-bs-theme="light"] .client-item-micro.status-new {
  background-color: #ffffff;
}

[data-bs-theme="light"] .client-item-micro.status-pending {
  background-color: #fff3cd;
  border-left: 3px solid #ffc107;
}

[data-bs-theme="light"] .client-item-micro.status-active {
  background-color: #d1ecf1;
  border-left: 3px solid #17a2b8;
}

[data-bs-theme="light"] .client-item-micro.status-urgent {
  background-color: #f8d7da;
  border-left: 3px solid #dc3545;
}

[data-bs-theme="light"] .client-item-micro.status-completed {
  background-color: #d4edda;
  border-left: 3px solid #28a745;
}

[data-bs-theme="light"] .status-indicator-micro {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

[data-bs-theme="light"] .client-info-micro {
  line-height: 1.1;
}

[data-bs-theme="light"] .client-name-micro {
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1;
  margin-bottom: 1px;
}

[data-bs-theme="light"] .client-phone-micro {
  font-size: 0.7rem;
  line-height: 1;
}

[data-bs-theme="light"] .client-time-micro {
  font-size: 0.65rem;
  line-height: 1;
}

[data-bs-theme="light"] .badge-micro {
  font-size: 0.55rem;
  padding: 0.1rem 0.25rem;
  line-height: 1;
  margin-right: 1px;
}

[data-bs-theme="light"] .btn-micro {
  padding: 0.1rem 0.2rem;
  font-size: 0.65rem;
  line-height: 1;
  border-radius: 0.15rem;
}

/* Icon-only delete button - no border, no background */
[data-bs-theme="light"] .delete-client {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: #dc3545;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

[data-bs-theme="light"] .delete-client:hover {
  opacity: 1;
  color: #dc3545;
  background: none !important;
}

[data-bs-theme="light"] .badges-micro {
  display: flex;
  gap: 1px;
}

[data-bs-theme="light"] .status-indicator {
  width: 20px;
  text-align: center;
}

[data-bs-theme="light"] .status-new .status-indicator {
  color: #6c757d;
}

[data-bs-theme="light"] .status-pending .status-indicator {
  color: #ffc107;
}

[data-bs-theme="light"] .status-active .status-indicator {
  color: #17a2b8;
}

[data-bs-theme="light"] .status-urgent .status-indicator {
  color: #dc3545;
}

[data-bs-theme="light"] .status-completed .status-indicator {
  color: #28a745;
}

[data-bs-theme="light"] .client-name-compact {
  font-weight: 500;
  font-size: 0.9rem;
}

[data-bs-theme="light"] .client-phone-compact {
  font-size: 0.8rem;
}

[data-bs-theme="light"] .client-time-compact {
  font-size: 0.75rem;
}

[data-bs-theme="light"] .badge-xs {
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
}

[data-bs-theme="light"] .btn-xs {
  padding: 0.1rem 0.3rem;
  font-size: 0.7rem;
  line-height: 1.2;
}

/* === MANAGEMENT TOOLS STYLES === */
[data-bs-theme="light"] .management-toolbar {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 12px;
}

[data-bs-theme="light"] .filter-group {
  margin-bottom: 8px;
}

[data-bs-theme="light"] .filter-group:last-child {
  margin-bottom: 0;
}

[data-bs-theme="light"] .filter-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 4px;
}

[data-bs-theme="light"] .filter-select {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}

[data-bs-theme="light"] .bulk-actions {
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 8px;
}

[data-bs-theme="light"] .pagination-info {
  font-size: 0.8rem;
  color: #6c757d;
}

[data-bs-theme="light"] .conversation-item:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

[data-bs-theme="light"] .user-message {
  color: #495057;
  background-color: #f8f9fa;
  border-left: 3px solid #0d6efd;
}

[data-bs-theme="light"] .llm-response {
  color: #212529;
  background-color: #ffffff;
}

/* === MESSAGE BUBBLES === */
[data-bs-theme="light"] .message-bubble {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #212529;
}

[data-bs-theme="light"] .message-bubble.user-message {
  background-color: #0d6efd;
  color: #ffffff;
}

[data-bs-theme="light"] .message-bubble.assistant-message {
  background-color: #e9ecef;
  color: #212529;
}

/* === CHAT MESSAGE LIST BACKGROUND === */
[data-bs-theme="light"] #messageList {
  background: #e2ebf1 !important;
}

/* === CONVERSATION CARDS === */
[data-bs-theme="light"] .conversation-card {
  background: #bbd5e9 !important;
  color: #212529;
}

/* === STATUS BADGES === */
[data-bs-theme="light"] .badge.bg-success {
  background-color: #198754 !important;
  color: #ffffff;
}

[data-bs-theme="light"] .badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000000;
}

[data-bs-theme="light"] .badge.bg-danger {
  background-color: #dc3545 !important;
  color: #ffffff;
}

[data-bs-theme="light"] .badge.bg-info {
  background-color: #0dcaf0 !important;
  color: #000000;
}

/* === SCROLLBAR STYLING === */
[data-bs-theme="light"] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

[data-bs-theme="light"] ::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 4px;
}

[data-bs-theme="light"] ::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 4px;
}

[data-bs-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

/* === CHAT CONTAINERS === */
[data-bs-theme="light"] .chat-container {
  background-color: #ffffff;
  border-color: #dee2e6;
}

[data-bs-theme="light"] .chat-header {
  background-color: #98b9dd;
  border-bottom: 1px solid var(--border-muted);
  color: #212529;
}

[data-bs-theme="light"] .chat-messages {
  background-color: #eef2f9;
}

[data-bs-theme="light"] .chat-input-container {
  background-color: #f8f9fa;
  border-top-color: #dee2e6;
}

/* === STATS CARDS === */
[data-bs-theme="light"] .stats-card {
  background-color: #ffffff;
  border-color: #dee2e6;
}

[data-bs-theme="light"] .stats-value {
  color: #212529;
}

[data-bs-theme="light"] .stats-label {
  color: #6c757d;
}

/* === SIDEBAR === */
[data-bs-theme="light"] .sidebar {
  background-color: #f8f9fa;
  border-right-color: #dee2e6;
}

[data-bs-theme="light"] .sidebar-item {
  color: #495057;
}

[data-bs-theme="light"] .sidebar-item:hover,
[data-bs-theme="light"] .sidebar-item.active {
  background-color: #e9ecef;
  color: #212529;
}

/* === THEME TOGGLE BUTTON === */
[data-bs-theme="light"] .theme-toggle {
  background-color: #ffffff;
  border-color: #dee2e6;
  color: #495057;
}

[data-bs-theme="light"] .theme-toggle:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #212529;
}

[data-bs-theme="light"] .list-group-item.active {
  background-color: #e2ebf1 !important;
  color: #212529 !important;
  border-color: #0077b6 !important;
}
  
/* scroller background */
[data-bs-theme="light"] ::-webkit-scrollbar-track {
  background: #e2ebf1;
  border-radius: 4px;
}

[data-bs-theme="light"] ::-webkit-scrollbar-thumb {
  background: #0077b6;  
  border-radius: 4px;
}

[data-bs-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

/* === CHAT MESSAGES STYLING === */
[data-bs-theme="light"] .message-row {
  margin-bottom: 1rem;
  display: flex;
}

[data-bs-theme="light"] .message-row.inbound {
  justify-content: flex-start;
}

[data-bs-theme="light"] .message-row.outbound {
  justify-content: flex-end;
}

[data-bs-theme="light"] .message-bubble {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  position: relative;
}

[data-bs-theme="light"] .message-row.inbound .message-bubble {
  background-color: #a6c6d8;
  border-bottom-left-radius: 0.25rem;
}

[data-bs-theme="light"] .message-row.outbound .message-bubble {
  background-color: #005e90 !important;
  color: white;
  border-bottom-right-radius: 0.25rem;
}

[data-bs-theme="light"] .message-text {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

[data-bs-theme="light"] .message-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

[data-bs-theme="light"] .message-meta .text-muted {
  color: #f08f3f !important;
}

[data-bs-theme="light"] .message-tools {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .message-row.outbound .message-tools {
  border-top-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="light"] .message-translation-toggle {
  font-size: 0.875rem;
  color: #6c757d;
  text-decoration: none;
}

[data-bs-theme="light"] .message-row.outbound .message-translation-toggle {
  color: rgba(255, 255, 255, 0.8);
}

[data-bs-theme="light"] .message-translation-toggle:hover {
  color: #0d6efd;
  text-decoration: underline;
}

[data-bs-theme="light"] .message-row.outbound .message-translation-toggle:hover {
  color: white;
}

[data-bs-theme="light"] .message-translation {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  font-style: italic;
}

[data-bs-theme="light"] .message-row.outbound .message-translation {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === CONVERSATION SUMMARY STYLING === */
[data-bs-theme="light"] .conversation-summary {
  border-left: 1px solid #e9ecef;
  background-color: #f8f9fa;
  height: 100vh;
  overflow-y: auto;
  position: sticky;
  top: 0;
}

[data-bs-theme="light"] .summary-content {
  height: 100%;
  overflow-y: auto;
  padding: 1rem !important;
}

[data-bs-theme="light"] .summary-header {
  position: sticky;
  top: 0;
  background-color: #f0f2f5;
  z-index: 10;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 1rem !important;
}

[data-bs-theme="light"] .summary-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

[data-bs-theme="light"] .summary-content-section {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

[data-bs-theme="light"] .summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

[data-bs-theme="light"] .summary-actions .btn {
  white-space: nowrap;
  justify-content: flex-start;
  text-align: left;
}

[data-bs-theme="light"] .summary-actions .btn i {
  width: 16px;
  margin-right: 0.5rem;
}

/* Compact badges in summary */
[data-bs-theme="light"] .summary-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

[data-bs-theme="light"] .summary-badge-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

[data-bs-theme="light"] .summary-badge-row small {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.35rem;
  display: block;
  width: 100%;
}

[data-bs-theme="light"] .summary-badge-row .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

[data-bs-theme="light"] .summary-badge-row-inline {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

[data-bs-theme="light"] .summary-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

[data-bs-theme="light"] .summary-badge-item small {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.35rem;
  display: block;
}

[data-bs-theme="light"] .summary-badge-item .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

/* === MANUAL RESPONSE BOX === */
[data-bs-theme="light"] .manual-response-box {
  background-color: #eef2f9 !important;
  border-color: #d1dbe8 !important;
}

[data-bs-theme="light"] .manual-response-box .form-label {
  color: #495057;
}

/* Input wrapper with button inside */
[data-bs-theme="light"] .manual-response-input-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
}

[data-bs-theme="light"] .manual-response-box .form-control {
  background-color: #ffffff;
  border-color: #d1dbe8;
  color: #212529;
  padding-right: 50px; /* Space for the button */
  resize: none;
  flex: 1;
}

[data-bs-theme="light"] .manual-response-box .form-control:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Send button inside textarea */
[data-bs-theme="light"] .manual-response-box .btn-send-inline {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0d6efd;
  border-color: #0d6efd;
  transition: all 0.2s ease;
}

[data-bs-theme="light"] .manual-response-box .btn-send-inline:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: scale(1.05);
}

[data-bs-theme="light"] .manual-response-box .btn-send-inline:active {
  transform: scale(0.95);
}

[data-bs-theme="light"] .manual-response-box .btn-send-inline i {
  font-size: 1rem;
}

/* === CONVERSATION CARDS STYLING === */
[data-bs-theme="light"] .active-threads-card {
  background-color: #f8fafb;
  border-radius: 12px;
  border: 1px solid #d1dbe8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .active-threads-card .card-body {
  padding: 1.5rem;
}

/* Grouped threads section */
[data-bs-theme="light"] .grouped-threads-section {
  margin-top: 2rem;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-item {
  background-color: #f1f3f5;
  border: 1px solid #d1dbe8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border-color: #b8c5d6;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-button {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  border: none;
  background-color: #f1f3f5;
  color: #2d3748;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-button:not(.collapsed) {
  background-color: #e3e7eb;
  box-shadow: none;
  color: #1a202c;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-button:focus {
  box-shadow: none;
  border: none;
}

[data-bs-theme="light"] .grouped-threads-section .accordion-body {
  padding: 1.25rem;
  background-color: #f8fafb;
}
