/* Success message styles */
.success-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--edukai-green);
  color: white;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  max-width: 400px;
  animation: slide-in 0.5s ease-out;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.success-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
