/* Làm nổi bật tab đang chọn */
.tab-btn.active {
  background-color: #a855f7 !important;
  color: white;
}

/* Style cơ bản cho input và select */
input, select, textarea {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: #eee;
  padding: 8px;
  border-radius: 6px;
}

/* Hover effect cho các item lịch sử */
.history-item:hover {
  background-color: #2d2d2d;
  transition: 0.2s;
}

/* Scrollbar gọn gàng */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 10px;
}
