/* =========================
   GLOBAL
========================= */
body {
  background-color: #f5f7fb;
  font-family: 'Segoe UI', sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #1e293b;
  color: #fff;
  padding: 15px;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
  min-height: 100vh;
  background: #ffffff;
  border-right: 1px solid #ddd;
  padding: 15px;
}

.sidebar a {
  display: block;
  padding: 8px 10px;
  color: #333;
  text-decoration: none;
}

.sidebar a:hover {
  background: #e2e8f0;
  border-radius: 5px;
}

/* =========================
   CONTENT
========================= */
.content {
  padding: 20px;
}

/* =========================
   TABLE FIX (INI YANG PENTING)
========================= */
table {
  table-layout: fixed;
  width: 100%;
}

table th,
table td {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  vertical-align: top;
}

/* DataTables */
#myTable {
  table-layout: fixed;
  width: 100% !important;
}

#myTable th,
#myTable td {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* kolom panjang */
td:nth-child(6),
td:nth-child(7) {
  max-width: 250px;
}

/* hover */
.table-hover tbody tr:hover {
  background-color: #f1f5f9;
}