/* Pengaturan Dasar */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ECF0F5;
  color: #202124;
}

/* --- Header Styling --- */

header {
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
}

header nav a {
  text-decoration: none;
  color: #000;
  margin-right: 15px;
  font-size: 13px;
  line-height: 30px;
}

header nav .grid-icon {
  font-size: 16px;
  margin-right: 15px;
  line-height: 30px;
  vertical-align: middle;
}

.sign-in {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 9px 15px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* --- Main Content Styling --- */

main {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px;
}

.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Kotak Pencarian */

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #dadce0;
  border-radius: 24px;
  padding: 10px 15px;
  width: 582px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.search-box:hover {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  border-color: rgba(223, 225, 229, 0);
}

.search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 0 10px;
  background-color: #ECF0F5;
}

.search-input::placeholder {
  color: darkgray;
}

.search-box span {
  color: #ECF0F5;
  background-color: #ECF0F5;
  font-size: 16px;
  line-height: 24px;
}

.search-svg {
  fill: gray;
  width: 18px;
  height: 18px;
}

/* Flat button */

.no-border-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.no-border-button:hover {
  text-decoration: underline;
  color: #007bff;
}

.no-border-button:focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
}

/* Table */

.data-table {
  width: 75%;
  border-collapse: collapse;
}

.data-table tr>td {
  padding: 4px;
}

.data-table .label {
  text-align: right;
  font-weight: bold;
  vertical-align: top;
}

.data-table .separator {
  vertical-align: top;
}

.data-table .value {
  vertical-align: top;
  width: 75%;
}

/* Pengaturan Responsif Sederhana */

@media (max-width: 768px) {
  .search-box {
    width: 90%;
  }

}