html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 10px;
}

/* Bungkus semua konten dalam container agar berada di tengah */
.container {
  width: 100%;
  max-width: 300px; /* atau 320px jika ingin sedikit lebih lebar */
}

.article {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

footer {
  padding-top: 0px;
}

h1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.card {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 10px;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.card-text {
  z-index: 1;
  width: 100%;
  text-align: center;
}

button {
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: black;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 6px -1px white;
}

.btn-link {
  display: inline-block;
  padding: 8px 12px;
  min-width: 100px; /* Lebarkan tombol minimum */
  text-align: center;
  border: none;
  border-radius: 5px;
  background: #ffed00;
  color: #000000;
  font-weight: bold;
  box-shadow: 0 2px 6px -1px white;
  text-decoration: none;
}

button:hover {
  background: black;
}

header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 300px; /* Batasi ukuran maksimum logo */
  height: auto;    /* Menjaga aspek rasio */
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
}

.player-card {
  background-color: blue;
}

.tie-card {
  background-color: #28a745;
}

.banker-card {
  background-color: red;
}

.label {
  font-size: 16px;
}

.odds {
  font-size: 14px;
}

.actions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.btns {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.history-container {
  text-align: center;
  margin-top: 10px;
}

.history {
  background-color: black;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px;
  white-space: nowrap;
  border-radius: 8px;
  height: 40px;
  box-shadow: 0 2px 6px -1px white;
}

.circle {
  min-width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.player {
  background-color: blue;
}

.banker {
  background-color: red;
}

.tie {
  background-color: green;
}

.columns-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 5px;
}
