/* Wedding Hashtag Generator - Custom Styles */
.hashtag-card {
    transition: all 0.2s ease;
    cursor: pointer;
}
.hashtag-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}
.hashtag-card.copied {
    background: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
}
.hashtag-category-tab {
    transition: all 0.2s ease;
}
.hashtag-category-tab.active {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}
