/* Layout Dashboard */
.pob-dashboard {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.pob-sidebar {
  width: 220px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
}
.pob-sidebar h3 { margin-bottom: 10px; }
.pob-sidebar ul { list-style: none; padding: 0; }
.pob-sidebar li { margin: 8px 0; }
.pob-sidebar a {
  display: block;
  padding: 8px;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
}
.pob-sidebar a.active, 
.pob-sidebar a:hover {
  background: #0073aa;
  color: #fff;
}

.pob-content { flex: 1; }

.pob-tab { display: none; }
.pob-tab.active { display: block; }

.pob-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.pob-table th, .pob-table td { border: 1px solid #ddd; padding: 8px; text-align: center; }
.pob-table th { background: #fafafa; }

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
.badge-success { background: #28a745; }
.badge-warning { background: #ffc107; color: #000; }
.badge-danger { background: #dc3545; }

.pob-history { list-style: none; padding: 0; }
.pob-history li { margin: 6px 0; }
/* ===== Dashboard Modern Style ===== */
.pob-dashboard {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.pob-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #eee;
}

.pob-tabs li { margin: 0; }

.pob-tabs a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px 8px 0 0;
    background: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.pob-tabs a.active {
    background: #0073aa;
    color: #fff;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* Table */
.pob-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.pob-table th, .pob-table td {
    padding: 10px;
    border: 1px solid #ddd;
}
.pob-table th {
    background: #f8f8f8;
}

/* Badge Status */
.badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.badge-success { background: #28a745; }
.badge-warning { background: #ffc107; color: #000; }
.badge-danger { background: #dc3545; }

/* Buttons */
.pob-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.pob-btn:hover { background: #005c87; }

.logout-btn {
    background: #dc3545 !important;
}
.logout-btn:hover {
    background: #b52a36 !important;
}