.tog__toast_container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 9999;
  pointer-events: none;
}
.tog__toast {
  pointer-events: auto;
  min-width: 240px;
  max-width: 420px;
  padding: 0.75rem 1rem;
  background: #1e1e2f;
  color: #1a2238;
  border-radius: 10px;
  border-left: 4px solid #3a86ff;
  box-shadow: 0 6px 18px rgba(26,34,56,0.08);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.tog__toast--success {
  border-left-color: #00c2a8;
}
.tog__toast--error {
  border-left-color: #cd5c5c;
}
.tog__toast--info {
  border-left-color: #3a86ff;
}
.tog__toast--hiding {
  opacity: 0;
  transform: translateX(20px);
}
.tog__confirm {
  position: fixed;
  inset: 0;
  background: rgba(30,30,47,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
.tog__confirm__box {
  background: #1e1e2f;
  color: #1a2238;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  border: 1px solid rgba(26,34,56,0.1);
  min-width: 320px;
  max-width: 480px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
}
.tog__confirm__box p {
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  line-height: 1.5;
}
.tog__confirm__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.tog__prompt__input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  color: #1a2238;
  border: 1px solid #00c2a8;
  border-radius: 10px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
}
.tog__prompt__input:focus {
  box-shadow: 0 0 12px rgba(0,194,168,0.4);
}
.tog__btn {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.tog__btn--primary {
  background: #3a86ff;
  color: #fff;
}
.tog__btn--primary:hover {
  background: #5295ff;
  box-shadow: 0 0 24px rgba(58,134,255,0.2);
}
.tog__btn--secondary {
  background: rgba(255,255,255,0.16);
  color: #f5f5f7;
  border-color: rgba(255,255,255,0.45);
}
.tog__btn--secondary:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  color: #fff;
}
.tog__btn--ghost {
  background: transparent;
  color: #2563eb;
  border-color: rgba(58,134,255,0.35);
}
.tog__btn--ghost:hover {
  background: rgba(58,134,255,0.08);
  border-color: #2563eb;
  color: #2563eb;
}
.tog__btn--danger {
  background: #cd5c5c;
  color: #fff;
}
.tog__btn--danger:hover {
  background: #c95151;
}
