/* === Début : Styles issus de style.css (fusionnés le 2024-05-30) === */
.instructions-card {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px #0001;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.instructions-card h2 {
  margin-top: 0;
  color: #1a237e;
}
.instructions-card ol {
  margin: 0;
  padding-left: 1.2em;
}
.instructions-card li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.upload-section .upload-card {
  margin-bottom: 32px;
}
.command-guide {
  background: #f8fafc;
  border: 1.5px solid #dbeafe;
  border-radius: 10px;
  padding: 24px 28px 18px 28px;
  margin: 32px auto 24px auto;
  max-width: 600px;
  box-shadow: 0 2px 8px #0001;
  font-size: 1.08em;
}
.command-guide h3 {
  margin-top: 0;
  color: #2563eb;
  font-size: 1.25em;
  margin-bottom: 18px;
}
.command-guide ol {
  margin: 0;
  padding-left: 1.2em;
}
.command-guide li {
  margin-bottom: 18px;
}
.command-guide pre {
  background: #e0e7ef;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 8px 0 0 0;
  font-size: 1em;
  font-family: 'Fira Mono', 'Consolas', monospace;
  color: #1e293b;
  overflow-x: auto;
}
.command-guide .tip {
  display: block;
  margin-top: 6px;
  color: #2563eb;
  font-size: 0.98em;
}
.command-guide a {
  color: #2563eb;
  text-decoration: underline;
}
.time-info {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
}

.time-details {
    display: flex;
    gap: 15px;
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
}

.time-details span {
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.result-header h3 {
    margin: 0;
} 
/* === Fin : Styles issus de style.css === */

/* Variables */
:root {
    --primary-color: #153a5b;
    --secondary-color: #4286f4;
    --accent-color: #2563c9;
    --background-color: #19233c;
    --card-background: #ffffff;
    --text-color: #ffffff;
    --text-color-dark: #333333;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
  }
  
  /* Dark mode variables */
  .dark-mode {
    --card-background: #1e293b;
    --text-color-dark: #e2e8f0;
    --border-color: #334155;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  /* Reset et styles de base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color var(--transition-normal);
  }
  
  .app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Header */
  .app-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
  }
  
  .header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: none;
    margin: 0 auto;
  }
  
  .header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .logo-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    height: 60px;
    width: auto;
  }
  
  .app-title {
    flex: 1;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  
  .theme-toggle {
    flex: 0 0 auto;
  }
  
  .theme-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }
  
  .theme-toggle button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .sun-icon,
  .moon-icon {
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }
  
  .dark-mode .sun-icon {
    display: block;
    opacity: 1;
    transform: rotate(0);
  }
  
  .dark-mode .moon-icon {
    display: none;
    opacity: 0;
    transform: rotate(-90deg);
  }
  
  .sun-icon {
    display: none;
    opacity: 0;
    transform: rotate(90deg);
  }
  
  .moon-icon {
    display: block;
    opacity: 1;
    transform: rotate(0);
    color: #fff !important;
    stroke: #fff !important;
  }
  
  /* Main content */
  .app-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
  
  .intro-card, .help-card, .upload-section.card, .analysis-section, .results-section.card {
    margin-bottom: 30px !important;
    margin-top: 0 !important;
  }
  
  .section-title {
    margin-top: 0;
    margin-bottom: 2.2rem;
    color: var(--text-color-dark);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0;
  }
  
  /* Card component */
  .card {
    background-color: var(--card-background);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  }
  
  .card:hover {
    transform: translateY(-2px);
  }
  
  /* Upload section */
  .upload-section.card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-bottom: 32px;
    margin-top: 0;
    max-width: 98vw;
  }
  
  .upload-section .section-title {
    text-align: center;
    color: #153a5b;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
    padding: 0;
  }
  
  .upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  
  .upload-column {
    display: flex;
    flex-direction: column;
  }
  
  .upload-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin-bottom: 32px;
    transition: box-shadow 0.18s, transform 0.18s;
  }
  
  .upload-card:hover {
    transform: translateY(-2px) scale(1.01);
  }
  
  .upload-title {
    color: #153a5b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  
  .upload-subtitle {
    color: #2563eb;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
  }
  
  .drop-zone {
    background: #f1f6fd;
    border: 2.5px dashed #2563eb;
    border-radius: 12px;
    min-height: 140px;
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s, background 0.18s;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
  }
  
  .drop-zone:hover,
  .drop-zone:focus,
  .drop-zone.dragover {
    border-color: #4eaaff;
    background: #e6f0fa;
  }
  
  .drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  
  .upload-icon {
    color: #2563eb;
    width: 38px;
    height: 38px;
    stroke-width: 2.2;
    margin-bottom: 0.2rem;
  }
  
  .drop-zone-text {
    color: #153a5b;
    font-size: 1.08rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.18s;
  }
  
  .file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }
  
  .preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .preview-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }
  
  .preview-item:hover {
    transform: scale(1.02);
  }
  
  .preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
  }
  
  .preview-controls {
    display: flex;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid var(--border-color);
  }
  
  .dark-mode .preview-controls {
    background-color: rgba(30, 41, 59, 0.9);
  }
  
  .category-select {
    flex: 1;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    background-color: white;
    color: var(--text-color-dark);
  }
  
  .dark-mode .category-select {
    background-color: #334155;
    color: #e2e8f0;
    border-color: #475569;
  }
  
  .remove-btn {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 50%;
    margin-left: 0.5rem;
    transition: background-color var(--transition-fast);
  }
  
  .remove-btn:hover {
    background-color: rgba(244, 67, 54, 0.1);
  }
  
  /* Analysis section */
  .analysis-section {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
  }
  
  .primary-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(66, 134, 244, 0.25);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
  }
  
  .primary-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  
  .primary-button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 6px 16px rgba(37, 99, 201, 0.3);
    transform: translateY(-2px);
  }
  
  .primary-button:hover::before {
    transform: translateX(100%);
  }
  
  .primary-button:active {
    transform: translateY(0);
  }
  
  .button-icon {
    transition: transform var(--transition-normal);
  }
  
  .primary-button:hover .button-icon {
    transform: translateX(4px);
  }
  
  /* Bouton d'analyse désactivé */
  .primary-button:disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.5);
  }
  
  /* Results section */
  .results-section {
    padding-bottom: 1.5rem;
  }
  
  .results-container {
    padding: 0 1.5rem;
  }
  
  .loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(66, 134, 244, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .loading-text {
    color: var(--text-color-dark);
    font-size: 1rem;
    font-weight: 500;
  }
  
  .results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .result-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .dark-mode .result-item {
    background-color: #1e293b;
  }
  
  .result-item:hover {
    transform: translateY(-2px);
  }
  
  .result-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .result-title {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .result-info {
    color: var(--text-color-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .result-info-label {
    font-weight: 600;
    margin-right: 0.5rem;
    min-width: 120px;
  }
  
  .result-image {
    padding: 1rem;
    display: flex;
    justify-content: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
  }
  
  .dark-mode .result-image {
    background-color: #0f172a;
  }
  
  .result-image canvas {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
  }
  
  .result-footer {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
  
  .feedback-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-fast);
  }
  
  .feedback-btn:hover {
    transform: translateY(-2px);
  }
  
  .feedback-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  }
  
  .feedback-circle.green {
    background-color: var(--success-color);
  }
  
  .feedback-circle.red {
    background-color: var(--error-color);
  }
  
  .feedback-btn:hover .feedback-circle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }
  
  .feedback-btn.active .feedback-circle.green {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
  }
  
  .feedback-btn.active .feedback-circle.red {
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.3);
  }
  
  .feedback-label {
    font-weight: 600;
    color: #2563eb;
    margin-right: 12px;
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  
  .feedback-btn:hover .feedback-label {
    color: var(--secondary-color);
  }
  
  .feedback-btn.active[title="Résultat correct"] .feedback-label {
    color: var(--success-color);
  }
  
  .feedback-btn.active[title="Résultat incorrect"] .feedback-label {
    color: var(--error-color);
  }
  
  /* Footer */
  .app-footer {
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .app-container {
      padding: 1.5rem;
    }
  
    .app-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .app-header {
      flex-direction: column;
      gap: 1rem;
    }
  
    .theme-toggle {
      position: absolute;
      top: 0;
      right: 0;
    }
  
    .upload-grid {
      grid-template-columns: 1fr;
    }
  
    .app-title {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 576px) {
    .app-container {
      padding: 1rem;
    }
  
    .section-title {
      font-size: 1.25rem;
    }
  
    .drop-zone {
      padding: 1.5rem 1rem;
    }
  
    .preview-container {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .preview-item {
    animation: fadeIn 0.3s ease forwards;
  }
  
  .result-item {
    animation: slideUp 0.4s ease forwards;
  }
  
  /* Style pour l'input de catégorie dans les références */
  .category-input {
    width: 90%;
    margin: 8px auto 0 auto;
    display: block;
    padding: 6px 12px;
    border: 1.5px solid #3b82f6;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(59,130,246,0.07);
  }
  .category-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #3b82f655;
    background: #fff;
  }
  
  /* Style pour la croix de suppression */
  .preview-controls .remove-btn {
    background: #fff;
    border: 1.5px solid #f44336;
    color: #f44336;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 6px;
    right: 6px;
    box-shadow: 0 2px 8px rgba(244,67,54,0.08);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    z-index: 2;
  }
  .preview-controls .remove-btn:hover {
    background: #f44336;
    color: #fff;
    border-color: #d32f2f;
  }
  
  /* Pour que la croix soit bien positionnée dans la vignette */
  .preview-item {
    position: relative;
  }
  
  /* Bouton d'aide flottant */
  .help-btn {
    position: fixed;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    z-index: 1200;
    background: #fff;
    border: 2px solid #2563eb;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37,99,235,0.10);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .help-btn:hover {
    background: #2563eb;
    border-color: #153a5b;
  }
  .help-btn svg {
    display: block;
    transition: stroke 0.2s;
  }
  .help-btn:hover svg {
    stroke: #fff;
  }
  
  /* Modale d'aide */
  .help-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,41,59,0.55);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
  }
  .help-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 420px;
    width: 92vw;
    padding: 2.2rem 2rem 1.5rem 2rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    position: relative;
    color: #153a5b;
    font-size: 1.08rem;
    line-height: 1.7;
  }
  .help-modal-content h2 {
    font-size: 1.35rem;
    color: #2563eb;
    margin-bottom: 1.1rem;
    font-weight: 700;
  }
  .help-modal-content ul {
    margin-left: 1.1em;
    margin-bottom: 0.7em;
  }
  .help-modal-content li {
    margin-bottom: 0.6em;
  }
  .help-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2563eb;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
  }
  .help-modal-close:hover {
    color: #f44336;
  }
  @media (max-width: 576px) {
    .help-btn {
      right: 12px;
      width: 44px;
      height: 44px;
    }
    .help-modal-content {
      padding: 1.2rem 0.7rem 1rem 0.7rem;
      font-size: 0.98rem;
    }
  }
  
  /* Ligne feedback */
  .feedback-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 4px;
  }
  
  /* Modale de feedback */
  .feedback-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 41, 59, 0.35);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feedback-modal-content {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 20px 24px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    min-width: 320px;
    max-width: 95vw;
    min-height: 120px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .feedback-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #2563eb;
    cursor: pointer;
  }
  .feedback-select {
    width: 100%;
    padding: 7px 10px;
    border-radius: 7px;
    border: 1.5px solid #2563eb;
    font-size: 15px;
    margin-top: 4px;
    margin-bottom: 8px;
    background: #f8fafc;
    color: #222;
  }
  .feedback-other {
    width: 100%;
    min-height: 48px;
    border-radius: 7px;
    border: 1.5px solid #2563eb;
    font-size: 15px;
    padding: 7px 10px;
    margin-top: 4px;
    background: #f8fafc;
    color: #222;
    resize: vertical;
  }
  .feedback-modal-submit {
    margin-top: 10px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .feedback-modal-submit:hover {
    background: #153a5b;
  }
  
  /* Cartes de statistiques */
  .stats-cards {
    display: flex;
    gap: 1.5rem;
    margin: 0 0 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    color: #153a5b;
    font-weight: 600;
    border: 1.5px solid #e0e7ef;
  }
  .stat-card .stat-value {
    font-size: 2.1rem;
    color: #2563eb;
    font-weight: 800;
    margin-bottom: 0.2em;
  }
  
  /* Badge de numérotation */
  .badge-numero {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 10px;
  }
  
  /* Message de remerciement feedback */
  .feedback-thankyou {
    margin-top: 8px;
    color: #4caf50;
    font-size: 1.01rem;
    font-weight: 600;
    text-align: left;
    animation: fadeIn 0.5s;
  }
  
  /* Désactivation boutons feedback */
  .feedback-disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.5);
  }
  
  /* Animation bouton aide */
  .help-btn-animated {
    transition: transform 0.25s cubic-bezier(.4,2,.6,1);
  }
  .help-btn-animated:hover {
    transform: rotate(18deg) scale(1.08);
  }
  
  /* Animation slide/fade pour détails */
  .group-details-container {
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1), opacity 0.4s;
    overflow: hidden;
    opacity: 1;
    max-height: 2000px;
  }
  .group-details-container[style*="display: none"] {
    opacity: 0;
    max-height: 0;
    transition: max-height 0.4s, opacity 0.3s;
  }
  
  /* Badge de numérotation sur la bbox (canvas) */
  .bbox-badge-canvas {
    position: absolute;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: none;
    z-index: 10;
    border: 2px solid #fff;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  /* Couleur noire pour le nom de fichier dans les résultats */
  .result-title span {
    color: #222 !important;
  }
  
  /* Centrage stats + bouton export */
  #exportCsvBtn {
    display: flex;
    margin: 18px auto 18px auto !important;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .stats-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .results-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  #exportCsvBtn {
    display: flex;
    margin: 18px auto 18px auto !important;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .stats-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .language-selector {
    margin-left: 1rem;
  }
  
  .language-selector select {
    padding: 6px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    background: #19233c;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .language-selector select:hover {
    border-color: var(--accent-color);
  }
  
  .language-selector select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb55;
  }
  
  /* Style des options (efficace surtout sur Firefox) */
  .language-selector select option {
    background: #fff;
    color: #153a5b;
  }
  .language-selector select option:checked,
  .language-selector select option:hover {
    background: #2563eb;
    color: #fff;
  }
  
  .language-selector select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color-light);
  }
  
  .secondary-button {
    background: #e0e7ef;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 18px;
  }
  .secondary-button:hover {
    background: #2563eb;
    color: #fff;
  }
  
  .help-card {
    background: #19233c;
    border-radius: 10px;
    padding: 24px 28px 18px 28px;
    margin: 0 auto 32px auto;
    max-width: 700px;
    box-shadow: none;
    font-size: 1.08em;
    color: #fff;
  }
  .help-card h2 {
    margin-top: 0;
    color: #4eaaff;
    font-size: 1.25em;
    margin-bottom: 12px;
  }
  .help-card h3 {
    margin-bottom: 6px;
    color: #7ecbff;
    font-size: 1.08em;
  }
  .help-card ul {
    margin: 0 0 10px 1.2em;
    padding-left: 1.2em;
    color: #e3e8f0;
  }
  .help-card li {
    margin-bottom: 0.3em;
  }
  .help-card p, .help-card ul {
    font-size: 1em;
  }
  .help-card .badge {
    display: inline-block;
    background: #0e223a;
    color: #4eaaff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.98em;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid #4eaaff;
  }
  .help-card .badge-green {
    background: #1e3a2a;
    color: #6ee7b7;
    border: 1px solid #6ee7b7;
  }
  .help-card .badge-orange {
    background: #3b2e1a;
    color: #fbbf24;
    border: 1px solid #fbbf24;
  }
  .help-card .badge-grey {
    background: #2d3748;
    color: #cbd5e1;
    border: 1px solid #cbd5e1;
  }
  .help-card i {
    color: #b6e0ff;
  }
  
  .guide-examples-row {
    display: flex;
    gap: 18px;
    margin: 8px 0 12px 0;
    align-items: center;
  }
  .guide-example-img {
    max-width: 140px;
    max-height: 90px;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    border: 1.5px solid #4eaaff;
    padding: 3px;
  }
  
  .marge-examples-row {
    display: flex;
    gap: 32px;
    margin: 12px 0 18px 0;
    align-items: flex-end;
  }
  .marge-example {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marge-cadre {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2.5px dashed #4eaaff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    position: relative;
  }
  .marge-mauvaise .marge-logo {
    width: 40px;
    height: 40px;
    background: #4eaaff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .marge-bonne .marge-logo {
    width: 82px;
    height: 82px;
    background: #4eaaff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .marge-legende {
    font-size: 0.98em;
    margin-top: 2px;
    text-align: center;
    font-weight: 600;
    color: #b6e0ff;
  }
  .marge-legende.bonne {
    color: #16a34a;
  }
  .marge-legende.mauvaise {
    color: #fbbf24;
  }
  .marge-logo-img {
    display: block;
    object-fit: contain;
  }
  .marge-logo-mauvaise {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }
  .marge-logo-bonne {
    width: 82px;
    height: 82px;
    opacity: 1;
  }
  
  .example-btn {
    font-size: 1.13em;
    padding: 13px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e0e7ef 60%, #f5f7fa 100%);
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 700;
    box-shadow: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }
  .example-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #153a5b;
    box-shadow: none;
  }
  .example-btn svg {
    vertical-align: middle;
    margin-right: 8px;
    stroke: #2563eb;
    transition: stroke 0.18s;
  }
  .example-btn:hover svg {
    stroke: #fff;
  }
  
  .results-section.card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-bottom: 32px;
    margin-top: 0;
    max-width: 98vw;
  }
  .results-section .section-title {
    text-align: center;
    color: #153a5b;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
    padding: 0;
  }
  
  .results-section.card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-bottom: 32px;
    margin-top: 0;
    max-width: 98vw;
  }
  .results-section .section-title {
    text-align: center;
    color: #153a5b;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
    padding: 0;
  }
  
  .language-selector {
    margin-left: 1rem;
  }
  
  .language-selector select {
    padding: 6px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    background: #19233c;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .language-selector select:hover {
    border-color: var(--accent-color);
  }
  
  .language-selector select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb55;
  }
  
  /* Style des options (efficace surtout sur Firefox) */
  .language-selector select option {
    background: #fff;
    color: #153a5b;
  }
  .language-selector select option:checked,
  .language-selector select option:hover {
    background: #2563eb;
    color: #fff;
  }
  
  .language-selector select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color-light);
  }
  
  .secondary-button {
    background: #e0e7ef;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 18px;
  }
  .secondary-button:hover {
    background: #2563eb;
    color: #fff;
  }
  
  .help-card {
    background: #19233c;
    border-radius: 10px;
    padding: 24px 28px 18px 28px;
    margin: 0 auto 32px auto;
    max-width: 700px;
    box-shadow: none;
    font-size: 1.08em;
    color: #fff;
  }
  .help-card h2 {
    margin-top: 0;
    color: #4eaaff;
    font-size: 1.25em;
    margin-bottom: 12px;
  }
  .help-card h3 {
    margin-bottom: 6px;
    color: #7ecbff;
    font-size: 1.08em;
  }
  .help-card ul {
    margin: 0 0 10px 1.2em;
    padding-left: 1.2em;
    color: #e3e8f0;
  }
  .help-card li {
    margin-bottom: 0.3em;
  }
  .help-card p, .help-card ul {
    font-size: 1em;
  }
  .help-card .badge {
    display: inline-block;
    background: #0e223a;
    color: #4eaaff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.98em;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid #4eaaff;
  }
  .help-card .badge-green {
    background: #1e3a2a;
    color: #6ee7b7;
    border: 1px solid #6ee7b7;
  }
  .help-card .badge-orange {
    background: #3b2e1a;
    color: #fbbf24;
    border: 1px solid #fbbf24;
  }
  .help-card .badge-grey {
    background: #2d3748;
    color: #cbd5e1;
    border: 1px solid #cbd5e1;
  }
  .help-card i {
    color: #b6e0ff;
  }
  
  .guide-examples-row {
    display: flex;
    gap: 18px;
    margin: 8px 0 12px 0;
    align-items: center;
  }
  .guide-example-img {
    max-width: 140px;
    max-height: 90px;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    border: 1.5px solid #4eaaff;
    padding: 3px;
  }
  
  .marge-examples-row {
    display: flex;
    gap: 32px;
    margin: 12px 0 18px 0;
    align-items: flex-end;
  }
  .marge-example {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marge-cadre {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2.5px dashed #4eaaff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    position: relative;
  }
  .marge-mauvaise .marge-logo {
    width: 40px;
    height: 40px;
    background: #4eaaff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .marge-bonne .marge-logo {
    width: 82px;
    height: 82px;
    background: #4eaaff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .marge-legende {
    font-size: 0.98em;
    margin-top: 2px;
    text-align: center;
    font-weight: 600;
    color: #b6e0ff;
  }
  .marge-legende.bonne {
    color: #16a34a;
  }
  .marge-legende.mauvaise {
    color: #fbbf24;
  }
  .marge-logo-img {
    display: block;
    object-fit: contain;
  }
  .marge-logo-mauvaise {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }
  .marge-logo-bonne {
    width: 82px;
    height: 82px;
    opacity: 1;
  }
  
  .example-btn {
    font-size: 1.13em;
    padding: 13px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, #e0e7ef 60%, #f5f7fa 100%);
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 700;
    box-shadow: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }
  .example-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #153a5b;
    box-shadow: none;
  }
  .example-btn svg {
    vertical-align: middle;
    margin-right: 8px;
    stroke: #2563eb;
    transition: stroke 0.18s;
  }
  .example-btn:hover svg {
    stroke: #fff;
  }
  
  .intro-card {
    background: #19233c;
    color: #fff;
    border-radius: 14px;
    box-shadow: none;
    padding: 2.1rem 2.2rem 1.5rem 2.2rem;
    margin: 0 auto 32px auto;
    max-width: 800px;
    font-size: 1.13em;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  
  .time-estimate {
    background: #e6f0fa;
    color: #2563eb;
    border-radius: 10px;
    padding: 10px 18px;
    margin: 0 auto 18px auto;
    max-width: 340px;
    font-size: 1.08em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none;
  }
  .time-estimate svg {
    width: 20px;
    height: 20px;
    stroke: #2563eb;
    margin-right: 6px;
  }
  
  #detailedDashboard {
    margin-bottom: 38px;
    overflow-x: auto;
    color: #111;
  }
  .detailed-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px 16px 10px 10px;
    font-size: 1.01em;
    margin: 0 auto 12px auto;
    min-width: 600px;
    color: #111;
    overflow: hidden;
  }
  .detailed-dashboard-table th:first-child {
    border-top-left-radius: 16px;
  }
  .detailed-dashboard-table th:last-child {
    border-top-right-radius: 16px;
  }
  .detailed-dashboard-table th, .detailed-dashboard-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #e0e7ef;
  }
  .detailed-dashboard-table th {
    background: #e6f0fa;
    color: #2563eb;
    font-weight: 700;
  }
  .detailed-dashboard-table tr:last-child td {
    border-bottom: none;
  }
  .dash-validation-very, .dash-validation-strong {
    color: #219653;
    font-weight: 700;
  }
  .dash-validation-incertain {
    color: #e67e22;
    font-weight: 700;
  }
  .dash-validation-none {
    color: #f44336;
    font-weight: 700;
  }
  
  .reference-guide-block {
    background: #e6f0fa;
    color: #153a5b;
    border-radius: 10px;
    padding: 18px 22px 12px 22px;
    margin-bottom: 18px;
    box-shadow: none;
    font-size: 1.04em;
  }
  .reference-guide-block h3 {
    margin-top: 0;
    color: #2563eb;
    font-size: 1.13em;
    margin-bottom: 8px;
  }
  .reference-guide-block ul {
    margin: 0 0 10px 1.2em;
    padding-left: 1.2em;
  }
  .reference-guide-block li {
    margin-bottom: 0.3em;
  }
  .reference-guide-block p, .reference-guide-block ul {
    font-size: 1em;
  }
  .reference-guide-block .badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.98em;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid #153a5b;
  }
  .reference-guide-block .guide-example-img {
    background: #fff;
    box-shadow: none;
    border: 1.5px solid #2563eb;
  }
  
  .analyze-guide-block {
    background: #e6f0fa;
    color: #153a5b;
    border-radius: 10px;
    padding: 14px 20px 10px 20px;
    margin-bottom: 18px;
    box-shadow: none;
    font-size: 1.04em;
  }
  .analyze-guide-block h3 {
    margin-top: 0;
    color: #2563eb;
    font-size: 1.13em;
    margin-bottom: 8px;
  }
  .analyze-guide-block ul {
    margin: 0 0 10px 1.2em;
    padding-left: 1.2em;
  }
  .analyze-guide-block li {
    margin-bottom: 0.3em;
  }
  .analyze-guide-block .badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.98em;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid #153a5b;
  }
  
  .results-guide-block {
    background: #e6f0fa;
    color: #153a5b;
    border-radius: 10px;
    padding: 14px 20px 10px 20px;
    margin-bottom: 18px;
    box-shadow: none;
    font-size: 1.04em;
  }
  .results-guide-block h3 {
    color: #2563eb;
    font-size: 1.13em;
    margin-bottom: 8px;
  }
  .results-guide-block ul {
    margin: 0 0 10px 1.2em;
    padding-left: 1.2em;
  }
  .results-guide-block li {
    margin-bottom: 0.7em;
  }
  .results-guide-block .badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.98em;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid #153a5b;
  }
  .results-guide-block .badge-green {
    background: #219653;
    color: #fff;
    border: 1px solid #219653;
  }
  .results-guide-block .badge-orange {
    background: #fbbf24;
    color: #153a5b;
    border: 1px solid #fbbf24;
  }
  
  /* Badges validation style type dashboard */
  .badge-validation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1em;
    border-radius: 8px;
    padding: 3px 14px 3px 10px;
    border: 2px solid;
    background: rgba(0,0,0,0.10);
    margin-right: 8px;
    margin-bottom: 2px;
    line-height: 1.2;
    transition: background 0.18s, border-color 0.18s;
  }
  .badge-validation.very-strong {
    border-color: #219653;
    background: rgba(33, 150, 83, 0.10);
    color: #219653;
  }
  .badge-validation.strong {
    border-color: #219653;
    background: rgba(33, 150, 83, 0.10);
    color: #219653;
  }
  .badge-validation.incertain {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.18);
    color: #b68400;
  }
  .badge-validation.none {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.10);
    color: #f44336;
  }
  
  .details-toggle-btn {
    margin-bottom: 22px !important;
  }
  
  .reference-guide-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 18px;
    margin-top: 0;
    align-items: flex-start;
  }
  .guide-col {
    flex: 1;
    min-width: 0;
  }
  .guide-tips {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .guide-card {
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: none;
    padding: 18px 22px 14px 22px;
    margin-bottom: 0;
    font-size: 1.04em;
    color: #153a5b;
  }
  .guide-card h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 1.13em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .guide-card ul {
    margin: 0 0 0 1.2em;
    padding-left: 1.2em;
  }
  .guide-card li {
    margin-bottom: 0.3em;
  }
  .guide-example-imgs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .marge-examples-row {
    display: flex;
    gap: 32px;
    margin: 0 0 8px 0;
    align-items: flex-end;
  }
  .marge-example {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .marge-cadre {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2.5px dashed #4eaaff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    position: relative;
  }
  .marge-logo-img {
    display: block;
    object-fit: contain;
  }
  .marge-logo-mauvaise {
    width: 40px;
    height: 40px;
    opacity: 0.85;
  }
  .marge-logo-bonne {
    width: 82px;
    height: 82px;
    opacity: 1;
  }
  .marge-legende {
    font-size: 0.98em;
    margin-top: 2px;
    text-align: center;
    font-weight: 600;
    color: #b6e0ff;
  }
  .marge-legende.bonne {
    color: #16a34a;
  }
  .marge-legende.mauvaise {
    color: #fbbf24;
  }
  .guide-examples-row {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .guide-example-img {
    max-width: 140px;
    max-height: 90px;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    border: 1.5px solid #4eaaff;
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 900px) {
    .reference-guide-grid {
      flex-direction: column;
      gap: 18px;
    }
    .guide-col {
      width: 100%;
    }
    .guide-examples {
      padding: 14px 8px 12px 8px;
    }
  }
  
  .guide-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 2px;
    box-shadow: none;
    vertical-align: middle;
  }
  .guide-title {
    display: inline-block;
    font-size: 1.22em;
    font-weight: 800;
    color: #153a5b;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.01em;
  }
  .tip-badge {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
  }
  .guide-examples {
    background: #e6f0fa;
    border-radius: 14px;
    padding: 22px 18px 18px 18px;
    box-shadow: none;
  }
  .img-not-found {
    display: block;
    color: #b91c1c;
    background: #fff6f6;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.98em;
    text-align: center;
    margin: 6px auto 0 auto;
    max-width: 120px;
  }
  
  .card, .badge-validation, .stat-card, .primary-button, .results-section.card, .guide-card, .help-card, .example-btn, .results-guide-block, .reference-guide-block, .analyze-guide-block, .result-item, .preview-item, .guide-example-img, .marge-cadre, .marge-logo-mauvaise, .marge-logo-bonne, .bbox-badge-canvas, .notification, .results-section.card, .detailed-dashboard-table, .badge, .badge-numero {
    box-shadow: none !important;
  }
  