/* ===== HISTORY PAGE STYLE ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
}

/* Container utama */
.history-container {
  max-width: 800px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Judul */
.history-container h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #444;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* List item */
.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  margin-bottom: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.history-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Info produk */
.history-info {
  display: flex;
  flex-direction: column;
}

.history-info span {
  font-size: 14px;
  margin-bottom: 4px;
}

/* Total */
.history-total {
  font-weight: bold;
  font-size: 16px;
  color: #222;
}

/* Tombol detail */
.history-btn {
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  background: #2c7be5;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.history-btn:hover {
  background: #1a5ec9;
}
