/* Styles pour l'interface d'archivage */

.archive-container {
  max-height: 60vh;
  overflow-y: auto;
}

.archive-item {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #f9f9f9;
}

.archive-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.archive-date {
  color: #666;
  font-size: 0.9em;
}

.archive-preview {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.archive-actions {
  display: flex;
  gap: 8px;
}

/* Style pour les notifications de synchronisation */

.toast.sync-toast {
  max-width: 300px;
  text-align: left;
}

