@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: #1a1a1a;
  color: #eeeeee;
  height: 100vh;
  width: 100vw;
}

/* Header Styles */
#main-header {
  background-color: #111111;
  border-bottom: 3px solid #F5C518;
}

/* Bin Icon */
.bin-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.bin-icon .bin-body {
  background: #222;
  border: 2px solid #333;
  border-radius: 4px;
  width: 40px;
  height: 36px;
  position: absolute;
  bottom: 0;
}

.bin-icon .bin-lid {
  background: #F5C518;
  border-radius: 3px 3px 0 0;
  height: 6px;
  width: 40px;
  position: absolute;
  top: 0;
}

/* Search Bar */
.search-container {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input {
  background: transparent;
  outline: none;
  border: none;
  color: #eee;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  width: 100%;
}

.search-input::placeholder {
  color: #888;
}

/* Navigation Drawer */
#nav-drawer {
  background: #111;
  border-left: 3px solid #F5C518;
}

.nav-link {
  color: #eee;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover {
  color: #F5C518;
}

/* Cards and Content */
.card {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.alert {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.alert-danger {
  background: #dc3545;
  color: white;
}

.alert-success {
  background: #28a745;
  color: white;
}

/* Tables */
.dataTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  font-size: 12px;
}

th, td {
  padding: 8px 12px;
  border-bottom: 1px solid #333;
}

td {
  background: #000;
  color: #fff;
}

/* Additional styles */
#title-text {
  color: #F5C518;
}

#tagline-text {
  color: #888;
}

#menu-btn {
  color: #F5C518;
}

#close-btn {
  color: #F5C518;
}

#drawer-overlay {
  background: rgba(0,0,0,0.7);
}

i[data-lucide] {
  color: #F5C518;
  width: 18px;
  height: 18px;
}

i[data-lucide="menu"], i[data-lucide="x"] {
  width: 24px;
  height: 24px;
}

.inline-form {
  display: inline;
  margin: 0;
}

.delete-btn {
  background: none;
  border: none;
  color: #d00;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.success-text {
  color: green;
}

.note-text {
  font-size: 0.9em;
  color: #666;
}
  pad