/* ===================================================
   KEYLA ELENA — PERSONAL NOTES & JOURNAL STYLING
   =================================================== */

@keyframes float {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
  animation: float 14s infinite ease-in-out;
}

.animation-delay-2000 {
  animation-delay: 2.5s;
}

.animation-delay-4000 {
  animation-delay: 5s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(225, 29, 72, 0.2);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 29, 72, 0.4);
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Note Card Color Accents & Borders */
.note-card {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-card:hover {
  transform: translateY(-4px);
}

.note-accent-rose {
  border-top: 4px solid #fb7185;
}
.note-accent-purple {
  border-top: 4px solid #c084fc;
}
.note-accent-amber {
  border-top: 4px solid #fbbf24;
}
.note-accent-emerald {
  border-top: 4px solid #34d399;
}
.note-accent-sky {
  border-top: 4px solid #38bdf8;
}

/* Shaking animation for incorrect login */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake-animation {
  animation: shake 0.4s ease-in-out;
}

/* Glassmorphism highlight */
.glass-effect {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dark .glass-effect {
  background: rgba(15, 23, 42, 0.8);
}
