* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  flex-direction: column;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  width: 500px;
}

h1 {
  margin-bottom: 15px;
}

input, button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: blue;
  color: white;
  cursor: pointer;
}

marquee {
  display: block;
  margin-top: 10px;
  padding: 5px;
  font-weight: bold;
}

img {
  width: 100%;
  max-width: 300px;
  margin-top: 15px;
  border-radius: 10px;
}

/* Styling untuk tabel */
.table-container {
  margin-top: 20px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table, th, td {
  border: 1px solid black;
}

th, td {
  padding: 10px;
  text-align: center;
  background: #fff;
}

th {
  background-color: #007bff;
  color: white;
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
  .container {
    width: 95%;
  }
}
