
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 0.5s ease-in-out;
}

/* Glass Morphism Styles */
.glass-container {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-header {
    background: rgba(14, 165, 233, 0.5);
backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.glass-card::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
/* Custom scrollbar for history */
#history::-webkit-scrollbar {
    width: 6px;
}
#history::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#history::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 10px;
}

#history::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* Dark mode text colors */
.text-gray-500 {
    color: rgba(255, 255, 255, 0.5);
}

.text-gray-600 {
    color: rgba(255, 255, 255, 0.6);
}
