/* Google Keep style notes

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ActionText editor styling to match Google Keep */
.trix-content {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 1.5;
}

.trix-content:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.trix-toolbar {
  border: none !important;
  background: transparent !important;
  padding: 8px 0 !important;
}

.trix-button-group {
  border: none !important;
  background: transparent !important;
}

.trix-button {
  border: none !important;
  background: transparent !important;
  color: #6b7280 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

.trix-button:hover {
  background: #f3f4f6 !important;
}

.trix-button.trix-active {
  background: #e5e7eb !important;
  color: #374151 !important;
}

/* Note card hover effects */
.note-card {
  transition: all 0.2s ease-in-out;
}

.note-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Google Keep style input fields */
.keep-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
}

.keep-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.keep-input::placeholder {
  color: #9ca3af;
  font-style: italic;
} */


/* Smooth transitions for note movements */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.note-slide-in-top {
  animation: slideInFromTop 0.3s ease-out;
}

.note-slide-in-bottom {
  animation: slideInFromBottom 0.3s ease-out;
}

/* Pin button pulse animation */
@keyframes pinPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.pin-button-pulse {
  animation: pinPulse 0.6s ease-in-out;
}
