body {
    font-family: Arial, sans-serif;
    background-color: #dee1e2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
/* Menyusun logo di bagian atas tengah */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;  /* Sesuaikan ukuran logo */
    height: 150px;
}

.search-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 80%;
    max-width: 600px;
}

h1 {
    margin-bottom: 20px;
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

button {
    padding: 10px 50px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #03fc55;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 2px solid #f3f5f6;
    text-align: center;
}

th {
    background-color: #d3d4d6;
}
