.rwbqc-container {
  background: linear-gradient(135deg, #222 0%, #000 100%);
  color: #fff;
  border: 1px solid rgba(0,255,255,0.2);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
  max-width: 600px;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}
.rwbqc-title {
  color: #00e5ff;
  text-shadow: 0 0 8px #00e5ff;
  text-align: center;
}
.rwbqc-item {
  display: block;
  margin: 8px 0;
}
.rwbqc-check {
  accent-color: #00e5ff;
}
.rwbqc-total {
  font-weight: bold;
  margin-top: 20px;
  font-size: 18px;
  color: #00e5ff;
}
/* PERUBAHAN: Tombol diatur rata tengah */
.rwbqc-buttons {
  text-align: center; /* Tambahkan ini untuk rata tengah */
  margin-top: 20px;
}
.rwbqc-buttons button {
  margin: 10px 5px;
  background: transparent;
  border: 1px solid #00e5ff;
  color: #00e5ff;
  padding: 8px 16px;
  border-radius: 8px;
  transition: 0.3s;
}
.rwbqc-buttons button:hover {
  background: #00e5ff;
  color: #000814;
}
.rwbqc-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}
.rwbqc-footer a {
  color: #00e5ff;
  text-decoration: none;
}

/* TAMBAHAN: Style untuk judul kategori di tampilan user */
.rwbqc-category-title {
  color: #e0f7ff;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 5px;
  margin-top: 25px;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #00e5ff;
}

/* ===== Enhancement RWB Quote Calculator (Light Neon) ===== */

/* Background gradient abu-abu ke hitam */
.rwbqc-container {
  background: linear-gradient(180deg, #1f1f1f, #0a0a0a);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
}

/* Judul di tengah + efek neon halus */
.rwbqc-container h2 {
  text-align: center;
  color: #e0f7ff;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #00e5ff, 0 0 12px #00e5ff;
  animation: neonPulse 3s ease-in-out infinite;
}

/* Efek denyut neon ringan */
@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 8px #00e5ff, 0 0 12px #00e5ff;
  }
  50% {
    text-shadow: 0 0 15px #00e5ff, 0 0 25px #00e5ff;
  }
}

/* Teks, input, dan tombol agar tetap jelas di atas background gelap */
.rwbqc-container label,
.rwbqc-container p,
.rwbqc-container span {
  color: #f1f1f1;
}

.rwbqc-container input[type="checkbox"] {
  accent-color: #00e5ff;
}

.rwbqc-container button {
  background: linear-gradient(90deg, #00e5ff, #007bff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.rwbqc-container button:hover {
  box-shadow: 0 0 15px #00e5ff;
  transform: scale(1.05);
}

/* TAMBAHAN: Style untuk halaman admin agar lebih rapi */
.rwbqc-category-block {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.rwbqc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.rwbqc-category-header input {
    font-size: 1.2em;
    font-weight: bold;
    width: 50%;
}
.rwbqc-delete-category-btn, .rwbqc-delete-item-btn {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}
.rwbqc-delete-category-btn:hover, .rwbqc-delete-item-btn:hover {
    background: #c82333;
    border-color: #bd2130;
}