body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 20px;
    max-width: 1000px;
    background: #000;
  }

  h2 {
    font-size: 16px;
    background: #000; 
    border-radius: 5px; 
    color: #fff; 
    padding: 5px;
  }
  
  /* Bagian Header */
  .container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
  }
  
  .left-side {
    flex: 2;
  }
  
  .left-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .link {
    margin: 0 auto;
  }

  .button-link {
    width: 300px;
  }

  .button-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .button-box button {
    padding: 10px;
    border: none;
    background-image: linear-gradient(to bottom, #fffcd9 0%, #fff431 100%);
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button-box button:hover {
    background-color: #218838;
  }
  .search-container {
    text-align: center;
    padding: 20px;
  }
  
  .search-container input {
    padding: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 400px;
  }
  
  /* Grid Kotak */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .grid-item {
    background: linear-gradient(to right, #ffd000, #ffae00);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: rgb(255 255 255) -1px -1px 5px 1px !important;
  }
  
  .grid-item img {
    width: 190px;
    height: 190px;
    border-radius: 5px;
  }
  
  .button-prediksi {
    margin-top: 5px;
    padding: 5px;
    border: none;
    background-image: linear-gradient(to bottom, #fffcd9 0%, #fff431 100%);
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    width: 190px;
  }

  .macau {
    background: linear-gradient(to right, #ffd000, #ffae00);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: rgb(255 255 255) -1px -1px 5px 1px !important;
  }
  
  .macau img {
    width: 190px;
    height: 190px;
    border-radius: 5px;
  }
  
  .macau button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-image: linear-gradient(to bottom, #fffcd9 0%, #fff431 100%);
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .macau button:hover {
    background-color: #0056b3;
  }
  .content{
    background: rgb(31, 31, 31); 
    padding: 10px;
  }
  .popup {
    display: none; /* Initially hide the popup */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure popup is on top */
    max-width: 80%; /* Adjust as per your needs */
    max-height: 80%; /* Adjust as per your needs */
    overflow-y: auto; /* Enable scrolling if content exceeds max-height */
}
/* Styling for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.table-content tr td {
  border: 1px solid #000;
}

.post-meta {
  display: none;
}

#header-logo {
  visibility: hidden;
}

.entry-title {
  text-align: center;
  visibility: visible;
}

#theme-link {
  visibility: hidden;
}

.wasd {
  width: 100%;
  padding: 15px;
  text-decoration: none;
  color: #000;
}
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
    .banner-img {
      display: none;
    }
  }
  @media (max-width: 535px) {
    .macau button {
      padding: 5px;
    }
    .button-prediksi {
      width: 100%;
    }
    .grid-item img {
      width: 100%;
      height: auto;
    }
    .macau img {
      width: 100%;
      height: auto;
    }
  }
  