.animated-blue-bg {
    background: linear-gradient(to right, #bfdbfe, #3b82f6, #60a5fa, #bfdbfe);
    background-size: 300% 100%;
    animation: move-blue 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.animated-blue-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

@keyframes move-blue {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animated-green-bg {
    background: linear-gradient(to bottom right, #bbf7d0, #22c55e, #86efac, #bbf7d0);
    background-size: 300% 300%;
    animation: move-green 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.animated-green-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

@keyframes move-green {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

@keyframes pulseColor {
    0%, 100% { background-color: #60A5FA; }  /* blue-400 */
    50% { background-color: #34D399; }       /* green-400 */
}

.pulse-blue-green {
    animation: pulseColor 1.5s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient-bar {
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

@keyframes pulseGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.animated-badge {
    background-size: 200% 200%;
    animation: pulseGradient 6s ease infinite;
}

body {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #60a5fa #f1f5f9;    
}


body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f1f5f9;
}

body::-webkit-scrollbar-thumb {
  background-color: #60a5fa;
  border-radius: 8px;
  border: 2px solid #f1f5f9;
}


