* {
  font-family: "Google Sans", sans-serif;
  box-sizing: border-box;
}

:root {
  --primary_color: #00a3ff;
}

body {
  margin: 0;
  background: #000;
}

.cards-outer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem 1rem;
}

.card-pasaran {
  transition: 0.2s ease-in-out;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(to top, #000, #222);
  border: 1px solid #222;
}
.card-pasaran:hover {
  transform: translateY(-5px) scale(105%);
}
.card-pasaran .card-title {
  margin: -1.5rem 0 0 0;
  border: 2px solid var(--primary_color);
  min-height: 80px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  background-color: #000;
  background-image: linear-gradient(45deg, rgba(0, 162, 255, 0.1450980392), transparent);
}
.card-pasaran .card-day {
  text-align: center;
  margin: 10px auto;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 162, 255, 0.1450980392);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  border: 1px solid var(--primary_color);
  font-size: 13px;
}
.card-pasaran .card-table {
  margin-bottom: 1rem;
}
.card-pasaran .card-table .card-table-row {
  display: flex;
  justify-content: space-between;
}
.card-pasaran .card-table .card-table-row:first-child {
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.card-pasaran .card-table .card-table-row span {
  font-size: 12px;
  color: #aaa;
}
.card-pasaran .card-table .card-table-row span.card-value {
  color: #fff;
}
.card-pasaran .card-link a {
  display: inline-block;
  background: linear-gradient(to left, #00a3ff, #0b00a9);
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  padding: 0.36rem;
  font-weight: bold;
  margin-top: 0.56rem;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.card-pasaran .card-link a:hover {
  background: linear-gradient(to right, #00a3ff, #0b00a9);
}

.search-container {
  position: relative;
  margin: 0 auto 3rem auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-container svg {
  position: absolute;
  fill: #ccc;
  width: 1rem;
  height: 1rem;
  left: 8px;
}
.search-container input {
  padding: 8px 16px 8px 32px;
  width: 100%;
  border: 1px solid #333;
  border-radius: 5px;
  outline: none;
  background: transparent;
  color: #fff;
}
.search-container input:focus {
  border-color: var(--primary_color);
}

.judul {
  color: var(--primary_color);
  text-align: center;
}
@media screen and (max-width: 450px) {
  .judul {
    font-size: 13px;
    text-align: center;
  }
}/*# sourceMappingURL=app.css.map */