/* ====== GLOBAL STYLE UNTUK SEMUA HALAMAN ====== */

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    background: #f5f8fc;
    color: #333;
}

/* ====== RESPONSIVE CONTAINER ====== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== INDIKATOR STATUS DATABASE (pojok kiri atas) ===== */

#db-status {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 9999;
    animation: blink 1s infinite;
}

#db-status.ok {
    background: #28a745; /* hijau */
}

#db-status.err {
    background: red; /* merah */
}

@keyframes blink {
    50% { opacity: 0.2; }
}

/* ===== FORM STYLING ===== */

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 6px;
    font-size: 14px;
}

button {
    padding: 10px 18px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* ===== SIMPLE TABLE ===== */

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
}

th {
    background: #e9f2ff;
    text-align: center;
}
