/* ===== GLOBAL ===== */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 30px;

  display: flex;
  justify-content: center;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  width: 100%;
}

/* ===== HEADER ===== */
input {
  padding: 8px 12px;
  font-size: 16px;
  margin-right: 10px;
}

button {
  padding: 8px 14px;
  margin-right: 5px;
  font-size: 14px;
  cursor: pointer;
}

/* ===== TARGET ROW ===== */
.targets {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

/* wrapper supaya center */
.targets > div {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ===== CARD ===== */
.card {
  width: 200px;
  height: 260px;
  border: 3px solid #888;
  border-radius: 14px;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== CURRENT CARD ===== */
#current {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

/* ===== SYMBOL ===== */
.shape {
  font-size: 40px;
  margin: 6px;
}

/* ===== COLORS ===== */
.red {
  color: #d33;
}

.green {
  color: #2a7;
}

.blue {
  color: #36c;
}

.yellow {
  color: #e6b800;
}

/* ===== FEEDBACK ===== */
#feedback {
  margin-top: 25px;
  font-size: 20px;
  text-align: center;
}

/* ===== TIMELINE ===== */
#timeline {
  margin-top: 40px;
  font-family: monospace;
  text-align: left;
  white-space: pre-line;
}

/* ===== RESPONSIVE (LAYAR BESAR) ===== */
@media (min-width: 1400px) {
  .card {
    width: 240px;
    height: 300px;
  }

  .shape {
    font-size: 48px;
  }
}
