/* TRACK RECORD CSS v1.5 - 13 Languages + Report Generation */
/* MAKERHUB - Complete Stylesheet - FOND BLANC */

:root {
  --primary: #2AABEE;
  --primary-dark: #1a9fd4;
  --primary-light: rgba(42, 171, 238, 0.1);
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #f5f5f5;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border-color: #e0e0e0;
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.1);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
  --warning: #2AABEE;
  --warning-bg: rgba(42, 171, 238, 0.1);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
}

/* ==================== LAYOUT ==================== */
.dashboard-container {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.main-content {
  flex: 1;
  padding: 24px;
  margin-left: 260px;
  max-width: calc(100% - 260px);
  background: #f8f9fa;
}

@media (max-width: 1024px) {
  .main-content {
    margin-left: 0;
    max-width: 100%;
    padding: 16px;
    padding-top: 70px;
  }
}

/* ==================== HEADER ==================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.header-title h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.header-subtitle {
  font-size: 14px;
  
  margin-top: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-close-page {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-close-page:hover {
  background: var(--danger-bg);
  border-color: var(--danger);
  color: var(--danger);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 171, 238, 0.3);
}

.btn-secondary {
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: #000;
  background: var(--primary-light);
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: var(--bg-input);
  color: var(--text-primary);
}

.btn-delete-trade {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.btn-delete-trade:hover {
  background: var(--danger-bg);
  color: var(--danger);
  opacity: 1;
}

/* ==================== FORM ==================== */
.form-section {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.form-section-title i {
  color: var(--primary);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: #ffffff;
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-help {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-help i {
  color: var(--info);
}

/* ==================== STATS CARDS - 3 CARTES ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.stat-card.primary .stat-icon {
  background: var(--primary-light);
  color: #1a1a1a;
}

.stat-card.success .stat-icon {
  background: var(--success-bg);
  color: var(--success);
}

.stat-card.warning .stat-icon {
  background: var(--warning-bg);
  color: var(--warning);
}

.stat-card.danger .stat-icon {
  background: var(--danger-bg);
  color: var(--danger);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  
}

/* ==================== TABLE ==================== */
.table-container {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.table-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.table-title i {
  color: var(--primary);
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.table-actions .form-select,
.table-actions .form-input {
  width: auto;
  min-width: 140px;
  padding: 8px 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  white-space: nowrap;
  background: transparent; color: #1a1a1a; border-bottom: 2px solid #2AABEE;
}

tbody td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  color: var(--text-primary);
}

tbody tr:hover {
  background: #f8f9fa;
}

tbody tr:last-child td {
  border-bottom: none;
}

th:last-child,
td:last-child {
  width: 60px;
  text-align: center;
}

/* ==================== BADGES ==================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-long {
  background: var(--success-bg);
  color: var(--success);
}

.badge-short {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge-success {
  background: var(--success-bg);
  color: var(--success);
}

.badge-danger {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge-open {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge-be {
  background: #e0e7ff;
  color: #4f46e5;
}

.channel-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--primary-light);
  color: #1a1a1a;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* ==================== TP Badges ==================== */
.tp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  min-width: 45px;
}

.tp-hit-1 {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.tp-hit-2 {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.tp-hit-3 {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* ==================== Value Colors ==================== */
.value-positive {
  color: var(--success) !important;
  font-weight: 600;
}

.value-negative {
  color: var(--danger) !important;
  font-weight: 600;
}

/* ==================== PAGINATION ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: #000;
  background: var(--primary-light);
}

.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 700;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 48px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.empty-text {
  font-size: 14px;
  
}

/* ==================== CHANNELS LIST ==================== */
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-input);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.channel-item:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.channel-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-info i {
  font-size: 24px;
  color: #0088cc;
}

.channel-name {
  font-weight: 600;
  color: var(--text-primary);
}

.channel-id {
  font-size: 12px;
  color: var(--text-tertiary);
}

.channel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-status {
  font-size: 12px;
  font-weight: 500;
}

.channel-status.active {
  color: var(--success);
}

.channel-status.inactive {
  color: var(--text-tertiary);
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  animation: modalSlide 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-container.modal-large {
  max-width: 600px;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  background: transparent; color: #1a1a1a; border-bottom: 2px solid #2AABEE;
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.modal-header h2 i {
  color: var(--primary);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-input);
  border: none;
  
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--danger-bg);
  color: var(--danger);
}

.modal-body {
  padding: 24px;
  background: #ffffff;
}

.modal-description {
  
  font-size: 14px;
  margin-bottom: 20px;
}

/* ==================== LANGUAGE SELECTOR - 13 LANGUAGES ==================== */
.language-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 8px;
  margin-top: 20px;
  max-height: 180px;
  overflow-y: auto;
  padding: 4px;
}

.language-selector::-webkit-scrollbar {
  width: 6px;
}

.language-selector::-webkit-scrollbar-track {
  background: var(--bg-input);
  border-radius: 3px;
}

.language-selector::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.language-selector::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

.lang-btn {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateY(-1px);
  background: #ffffff;
}

.lang-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: #000;
  font-weight: 600;
}

/* ==================== MODAL OPTIONS ==================== */
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(4px);
}

.modal-option:hover .option-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.option-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

#optionLanding .option-icon {
  background: var(--info-bg);
  color: var(--info);
}

#optionBot .option-icon {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}

.option-content {
  flex: 1;
}

.option-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.option-content p {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.option-url {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 11px;
  color: #1a1a1a;
  font-family: monospace;
  border: 1px solid var(--border-color);
}

.option-arrow {
  color: var(--text-tertiary);
  font-size: 16px;
  transition: all 0.2s;
}

/* ==================== MODAL PREVIEW ==================== */
.modal-preview {
  background: var(--bg-input);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.modal-preview h4 {
  font-size: 13px;
  font-weight: 600;
  
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-preview h4 i {
  color: var(--primary);
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.preview-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* ==================== LOADING ==================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loading-overlay.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== NOTIFICATION ==================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  z-index: 99999;
  animation: slideIn 0.3s ease;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notification.success {
  background: var(--success);
  color: #fff;
}

.notification.error {
  background: var(--danger);
  color: #fff;
}

.notification.info {
  background: var(--info);
  color: #fff;
}

/* ==================== MENU TOGGLE ==================== */
.menu-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-toggle:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: #000;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  .header-title h1 {
    font-size: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .language-selector {
    grid-template-columns: repeat(3, 1fr);
    max-height: 150px;
  }
  
  .modal-container {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  
  .modal-body {
    padding: 16px;
  }
  
  .preview-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .table-actions {
    width: 100%;
  }
  
  .table-actions .form-select,
  .table-actions .form-input {
    flex: 1;
    min-width: 100px;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-group {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .stat-card {
    padding: 12px;
  }
  
  .stat-value {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .language-selector {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-option {
    padding: 14px;
  }
  
  .option-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .option-content h3 {
    font-size: 14px;
  }
  
  .option-content p {
    font-size: 11px;
  }
}

/* ==================== CONTENT WRAPPER ==================== */
.content {
  max-width: 100%;
}

/* ==================== ADDITIONAL STYLES ==================== */
strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--info);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==================== SCROLLBAR GLOBAL ==================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* ==================== SELECTION ==================== */
::selection {
  background: var(--primary);
  color: #000;
}

::-moz-selection {
  background: var(--primary);
  color: #000;
}
/* ========== MODAL PREMIUM STYLE ========== */
.modal-container {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 2px solid #2AABEE !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 40px rgba(42, 171, 238, 0.15) !important;
  overflow: hidden;
}

.modal-header {
  background: #ffffff !important;
  border-bottom: 2px solid #2AABEE !important;
  padding: 20px 24px !important;
}

.modal-header h2 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

.modal-header h2 i {
  color: #2AABEE !important;
}

.modal-close {
  background: #fff !important;
  border: 2px solid #2AABEE !important;
  color: #2AABEE !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.modal-close:hover {
  background: #2AABEE !important;
  color: #fff !important;
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px !important;
}

/* Language buttons */
.lang-btn {
  border: 2px solid #e5e5e5 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.lang-btn:hover {
  border-color: #2AABEE !important;
  background: #ffffff !important;
}

.lang-btn.active {
  border-color: #2AABEE !important;
  background: rgba(42,171,238,0.08) !important;
  color: #0088CC !important;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3) !important;
}

/* Option cards (Landing Page, Bot Message) */
.report-option {
  border: 2px solid #e5e5e5 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.report-option:hover {
  border-color: #2AABEE !important;
  background: #ffffff !important;
  box-shadow: 0 8px 25px rgba(42, 171, 238, 0.15) !important;
  transform: translateX(5px);
}

.report-option .option-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(42,171,238,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #2AABEE !important;
  font-size: 20px !important;
}

.report-option .option-arrow {
  color: #2AABEE !important;
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
}

.report-option:hover .option-arrow {
  transform: translateX(5px);
}

/* Section titles in modal */
.modal-section-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0088CC !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.modal-section-title i {
  color: #2AABEE !important;
}

/* ========== MODAL PREMIUM GOLD STYLE ========== */
#generateModal .modal-content {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 2px solid #2AABEE !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 50px rgba(42, 171, 238, 0.2) !important;
  overflow: hidden !important;
  max-width: 520px !important;
}

#generateModal .modal-header {
  background: #ffffff !important;
  border-bottom: 2px solid #2AABEE !important;
  padding: 20px 24px !important;
}

#generateModal .modal-header h2 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

#generateModal .modal-header h2 i {
  color: #2AABEE !important;
}

#generateModal .btn-close {
  background: #fff !important;
  border: 2px solid #2AABEE !important;
  color: #2AABEE !important;
  border-radius: 12px !important;
  width: 40px !important;
  height: 40px !important;
  transition: all 0.3s ease !important;
}

#generateModal .btn-close:hover {
  background: #2AABEE !important;
  color: #fff !important;
  transform: rotate(90deg) !important;
}

#generateModal .modal-body {
  padding: 24px !important;
  background: #fff !important;
}

#generateModal .form-group label {
  color: #0088CC !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#generateModal .form-group label i {
  color: #2AABEE !important;
}

/* Language buttons */
#generateModal .language-selector {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#generateModal .language-selector .lang-btn,
#generateModal .language-selector button {
  border: 2px solid #e5e5e5 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  cursor: pointer !important;
}

#generateModal .language-selector .lang-btn:hover,
#generateModal .language-selector button:hover {
  border-color: #2AABEE !important;
  background: #ffffff !important;
  transform: translateY(-2px) !important;
}

#generateModal .language-selector .lang-btn.active,
#generateModal .language-selector button.active {
  border-color: #2AABEE !important;
  background: rgba(42,171,238,0.08) !important;
  color: #0088CC !important;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3) !important;
}

/* Export options (Landing Page, Bot Message) */
#generateModal .export-option {
  border: 2px solid #e5e5e5 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

#generateModal .export-option:hover {
  border-color: #2AABEE !important;
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(42, 171, 238, 0.2) !important;
  transform: translateX(8px) !important;
}

#generateModal .export-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(42,171,238,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #2AABEE !important;
  font-size: 22px !important;
  border: 2px solid #2AABEE !important;
  flex-shrink: 0 !important;
}

#generateModal .export-title {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #1a1a1a !important;
  margin-bottom: 4px !important;
}

#generateModal .export-desc {
  font-size: 13px !important;
  color: #666 !important;
}

#generateModal .export-option .fa-chevron-right {
  color: #2AABEE !important;
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
  margin-left: auto !important;
}

#generateModal .export-option:hover .fa-chevron-right {
  transform: translateX(5px) !important;
}

/* Link Telegram Section */
#generateModal #linkTelegramSection {
  text-align: center !important;
}

#generateModal #linkTelegramSection .fab.fa-telegram {
  color: #2AABEE !important;
}

#generateModal #linkTelegramSection .btn-primary {
  background: linear-gradient(135deg, #2AABEE 0%, #d97706 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4) !important;
  transition: all 0.3s ease !important;
}

#generateModal #linkTelegramSection .btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(42, 171, 238, 0.5) !important;
}

/* Dégradé uniforme sur thead */
thead {
  background: #ffffff !important;
}
