/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Utility classes for animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Shadow DOM reset utilities */
:host {
    all: initial;
    font-family: inherit;
}

/* Prompt card specific styling */
.prompt-card {
    transition: all 0.2s ease;
}
.prompt-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.copy-btn:hover .copy-icon-original {
    display: none;
}
.copy-btn:hover .copy-icon-hover {
    display: inline-block;
}
.copy-icon-hover {
    display: none;
}