.modal-split-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.modal-split-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#editor-container-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden; /* Agar konten tidak melebihi viewport */
}

#editor-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.symbol-bar {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background-color: #282a36;
  border-top: 1px solid #44475a;
  font-family: 'Fira Code', monospace;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #44475a #282a36;
  min-height: 44px; /* Tinggi minimal agar bisa diklik di mobile */
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Gaya tombol */
.sym-btn {
  background: none;
  border: 1px solid #44475a;
  color: #f8f8f2;
  min-width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.sym-btn:hover {
  background-color: #44475a;
}

/* Scrollbar styling (opsional) */
.symbol-bar::-webkit-scrollbar {
  height: 6px;
}

.symbol-bar::-webkit-scrollbar-thumb {
  background-color: #44475a;
  border-radius: 6px;
}

.symbol-bar::-webkit-scrollbar-track {
  background: #282a36;
}