/* ===== LE SOMMELIER DE POCHE - Restaurant Dashboard Styles ===== */

/* Period select background image */
.period-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 640px) {
  /* Hide progress bar on mobile */
  .wine-progress {
    display: none;
  }

  /* Reduce gap in top wine items */
  .top-wine-item {
    gap: 12px;
    padding: 10px;
  }

  /* Time column in recent consultations */
  .consultation-time {
    width: auto;
    min-width: 40px;
  }
}

/* Chart container */
.chart-container {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.02), rgba(255, 107, 91, 0.02));
  border-radius: 12px;
  padding: 16px;
}

.chart-container canvas {
  max-width: 100%;
}

/* Chart placeholder gradient (kept for fallback) */
.chart-placeholder {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.05), rgba(255, 107, 91, 0.05));
}

/* Top wine item hover gradient */
.top-wine-item:hover {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.05), rgba(255, 107, 91, 0.05));
}

/* Wine rank gradients */
.wine-rank {
  background: linear-gradient(135deg, var(--victor-grape), var(--victor-wine));
}

.wine-rank.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.wine-rank.silver {
  background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.wine-rank.bronze {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}

/* Wine progress bar gradient */
.wine-progress-bar {
  background: linear-gradient(90deg, var(--victor-coral), var(--victor-grape));
}
