/* ============================================
   PREVIEW AREA - Zone de prévisualisation
   ============================================ */

.preview-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #202030;
}

.preview-area h2 {
  margin-bottom: 20px;
  color: #00ffa3;
  font-size: 1.2rem;
}

.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(45deg, #1a1a2e 25%, transparent 25%),
    linear-gradient(-45deg, #1a1a2e 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #1a1a2e 75%),
    linear-gradient(-45deg, transparent 75%, #1a1a2e 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  background-color: #252535;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-info {
  margin-top: 15px;
  padding: 8px 16px;
  background: #252535;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #888;
}
