/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #0d1117;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    background: #161b22;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 150, 255, 0.3);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

/* Input pencarian */
#searchInput {
    width: 100%;
    padding: 8px;
    border: 2px solid #0084ff;
    border-radius: 5px;
    background-color: #0d1117;
    color: white;
    font-size: 14px; /* Ukuran dikurangi */
    outline: none;
    transition: 0.3s;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 0 6px rgba(0, 180, 255, 0.5);
}

/* Hasil pencarian */
#result {
    margin-top: 8px;
    max-height: 350px; /* Sedikit dikurangi agar lebih rapi */
    overflow-y: auto;
    border-top: 2px solid #0084ff;
    padding-top: 8px;
}

/* Gaya tabel */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px; /* Ukuran font tabel dikurangi */
}

th, td {
    border: 1px solid #0084ff;
    padding: 6px; /* Padding dikurangi */
    text-align: left;
}

th {
    background-color: #0084ff;
    color: white;
    font-size: 13px; /* Ukuran font header lebih besar sedikit */
}

tr:nth-child(even) {
    background-color: #1a1f26;
}

/* Status teks */
.info, .loading, .not-found, .error {
    margin-top: 8px;
    font-size: 12px; /* Ukuran font untuk notifikasi dikurangi */
    padding: 6px;
    border-radius: 5px;
}

.info {
    background: #005792;
    color: white;
}

.loading {
    background: #ff9800;
    color: white;
}

.not-found {
    background: #d32f2f;
    color: white;
}

.error {
    background: #d32f2f;
    color: white;
}
