.notification {
  position: fixed;
  bottom: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 460px;
  width: calc(100% - 2rem);
  z-index: 1000;
  transform: translateX(-150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  visibility: hidden;
}

.notification.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.notification__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.notification__title {
  font-weight: 600;
  font-size: 16px;
  color: #2d3436;
}

.notification__close-btn {
  cursor: pointer;
  font-size: 20px;
  color: #636e72;
  transition: color 0.2s;
}

.notification__close-btn:hover {
  color: #d63031;
}

.notification__body {
  padding: 16px;
}

.alert-message {
  line-height: 1.6;
  color: #2d3436;
  font-size: 14px;
}

.divider {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid #dfe6e9;
}

.code-snippet {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 13px;
  margin: 12px 0;
}

.external-link {
  color: #0984e3;
  text-decoration: none;
  word-break: break-all;
}

.external-link:hover {
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}

.action-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.action-btn--primary {
  background: #3498db;
  color: white;
}

.action-btn--primary:hover {
  background: #2980b9;
}

.action-btn--secondary {
  background: #6462F3;
  color: white;
}

.action-btn--secondary:hover {
  background: #504eda;
}

.notification-control {
  position: fixed;
  bottom: 25%;
  z-index: 999;
}

.control-btn {
         border-radius: 0px 5px 5px 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    background: #0052d9;
    color: white;
    border: none;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    flex-wrap: nowrap;
}

.control-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.control-btn.active {
  background: #e74c3c;
}

.control-btn.active:hover {
  background: #c0392b;
}

.control-btn .icon {
  font-size: 18px;
}

.control-btn .text {
  font-size: 14px;
  letter-spacing: 5px;
  font-family: sans-serif;
  writing-mode: vertical-lr;
}

@media (max-width: 768px) {
  .notification {
      left: 1rem;
  }
  
}