/* 
 * ForiPrompts.com - Premium Stylesheet
 * Responsive, clean light mode theme, glassmorphism elements, and micro-animations.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Core Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-glow: rgba(167, 139, 250, 0.15);
  
  /* Brand Gradients (Soft Lavender to Pastel Teal) */
  --grad-primary: linear-gradient(135deg, #a78bfa 0%, #2dd4bf 100%);
  --grad-hover: linear-gradient(135deg, #8b5cf6 0%, #14b8a6 100%);
  --grad-blue: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  --grad-soft: linear-gradient(135deg, rgba(167, 139, 250, 0.05) 0%, rgba(45, 212, 191, 0.05) 100%);
  
  /* UI Tokens */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(167, 139, 250, 0.06);
  --shadow-hover: 0 24px 48px rgba(167, 139, 250, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Body Styles */
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile bottom nav on small screens */
}

@media(min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

/* Gradient Text Helper */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Transparent Background Blur (Glassmorphism) */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(167, 139, 250, 0.2);
}

/* Header & Sticky Nav */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
  z-index: 1030;
}

.main-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-normal);
  padding: 0.5rem 1rem !important;
}

.nav-link:hover, .nav-link.active {
  color: #a78bfa;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(167, 139, 250, 0.08) 0%, rgba(45, 212, 191, 0.06) 90%), var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  animation: float 6s ease-in-out infinite alternate;
}

.hero-search-container {
  max-width: 650px;
  margin: 2rem auto 0 auto;
}

.hero-search {
  padding: 1.25rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  background-color: var(--bg-primary);
  transition: var(--transition-normal);
}

.hero-search:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}

/* Custom Gradient Button */
.btn-grad {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
  transition: var(--transition-normal);
}

.btn-grad:hover {
  background: var(--grad-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}

.btn-outline-custom {
  border: 2px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition-normal);
}

.btn-outline-custom:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

/* Statistics Counters */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Categories cards grid */
.category-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #a78bfa;
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.category-card:hover .category-icon {
  background: var(--grad-primary);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

/* Platform cards grid */
.platform-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  height: 100%;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #2dd4bf;
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.platform-card:hover .platform-icon {
  background: linear-gradient(135deg, #2dd4bf 0%, #60a5fa 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.platform-count {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Prompt Card styles */
.prompt-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.prompt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(167, 139, 250, 0.2);
}

.prompt-card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
}

.prompt-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.prompt-card:hover .prompt-card-img {
  transform: scale(1.06);
}

.prompt-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.badge-platform {
  background: rgba(167, 139, 250, 0.08);
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 50px;
  transition: var(--transition-normal);
}

.badge-platform:hover {
  background: rgba(167, 139, 250, 0.18);
  color: #8b5cf6;
}

.badge-category {
  background: rgba(45, 212, 191, 0.08);
  color: #2dd4bf;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 50px;
  transition: var(--transition-normal);
}

.badge-category:hover {
  background: rgba(45, 212, 191, 0.18);
  color: #14b8a6;
}

.prompt-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.4;
}

.prompt-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.prompt-card-footer {
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}

.prompt-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Prompt Box Syntax Highlight container */
.prompt-box-wrapper {
  background: #f8fafc;
  border: 1px dashed #a78bfa;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1e293b;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
}

.prompt-box-wrapper pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.prompt-box-wrapper .copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-normal);
}

.prompt-box-wrapper .copy-btn:hover {
  background: #f1f5f9;
  border-color: #a78bfa;
}

.copy-btn.copied {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #ffffff !important;
}

/* Pinterest Masonry Grid Setup */
.pinterest-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media(min-width: 768px) {
  .pinterest-grid {
    column-count: 2;
  }
}

@media(min-width: 1200px) {
  .pinterest-grid {
    column-count: 3;
  }
}

.pinterest-grid .col {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

.pinterest-grid .pinterest-grid-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Image Comparison Slider (Before/After) */
.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-img.img-before {
  z-index: 1;
}

.slider-img.img-after {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ffffff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #a78bfa;
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transition: background-color 0.2s;
}

/* Lightbox overlay styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Simulated Video Player */
.video-player-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: #0f172a;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition-slow);
}

.video-player-container:hover .video-poster-bg {
  transform: scale(1.03);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 2rem;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  cursor: pointer;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: #2dd4bf;
}

.video-overlay-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition-normal);
}

.video-player-container:hover .video-overlay-controls,
.video-player-container.playing .video-overlay-controls {
  opacity: 1;
}

.video-progress-bar {
  flex-grow: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.video-progress-fill {
  width: 0%;
  height: 100%;
  background: #a78bfa;
  border-radius: 5px;
  transition: width 0.1s linear;
}

/* Submit Drag & Drop Box */
.drag-drop-zone {
  border: 2px dashed #2dd4bf;
  background: rgba(45, 212, 191, 0.02);
  border-radius: var(--radius-md);
  padding: 3rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.drag-drop-zone:hover, .drag-drop-zone.dragover {
  background: rgba(45, 212, 191, 0.05);
  border-color: #a78bfa;
}

.drag-drop-icon {
  font-size: 3rem;
  color: #2dd4bf;
  margin-bottom: 1rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1020;
}

@media(min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  width: 20%;
  height: 100%;
  transition: var(--transition-normal);
}

.mobile-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: #a78bfa;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 80px; /* offset for mobile nav */
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #a78bfa;
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

@media(min-width: 768px) {
  .back-to-top {
    bottom: 30px;
  }
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #2dd4bf;
  transform: translateY(-3px);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Bookmark Active/Inactive Class */
.btn-bookmark.active i::before {
  content: "\F1E0"; /* Filled bookmark icon in bootstrap icons */
  color: #a78bfa;
}

.btn-like.active i::before {
  content: "\F415"; /* Filled heart icon in bootstrap icons */
  color: #2dd4bf;
}

.btn-like.active {
  color: #2dd4bf !important;
}

/* Trending Leaderboard Rankings styling */
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: var(--transition-normal);
}

.leaderboard-item:hover {
  transform: translateX(5px);
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: var(--shadow-sm);
}

.rank-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-right: 1.5rem;
  background: var(--bg-tertiary);
  color: var(--text-muted);
}

.rank-badge.rank-1 {
  background: #fbbf24;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.rank-badge.rank-2 {
  background: #cbd5e1;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(203, 213, 225, 0.3);
}

.rank-badge.rank-3 {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

/* Breadcrumbs customization */
.breadcrumb-item a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.breadcrumb-item a:hover {
  color: #a78bfa;
}

/* Tag clouds hover effect */
.trending-tag {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-normal);
  display: inline-block;
  margin: 0.25rem;
  text-decoration: none;
}

.hero-section .trending-tag {
  background-color: var(--bg-primary);
}

.trending-tag:hover {
  background: var(--grad-primary);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Premium Light Footer Styling */
footer.bg-dark {
  background-color: var(--bg-secondary) !important;
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border-color) !important;
}

footer.bg-dark .border-secondary {
  border-color: var(--border-color) !important;
}

footer.bg-dark h5, 
footer.bg-dark h6, 
footer.bg-dark .text-white {
  color: var(--text-main) !important;
  font-family: var(--font-heading);
}

footer.bg-dark p, 
footer.bg-dark .text-muted {
  color: var(--text-muted) !important;
}

footer.bg-dark a.text-muted {
  color: var(--text-muted) !important;
  transition: var(--transition-normal);
  display: inline-block;
}

footer.bg-dark a.text-muted:hover {
  color: #a78bfa !important;
  transform: translateX(3px);
}

/* Prevent social icons from shifting layouts on hover translation */
footer.bg-dark .d-flex.gap-3 a.text-muted {
  display: inline-flex;
}

footer.bg-dark .d-flex.gap-3 a.text-muted:hover {
  transform: scale(1.15) translateY(-2px);
}

footer.bg-dark input.form-control {
  background-color: var(--bg-primary) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
}

footer.bg-dark input.form-control::placeholder {
  color: var(--text-light) !important;
}

footer.bg-dark input.form-control:focus {
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1) !important;
}

.btn-solid-copy {
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-normal);
}

.btn-solid-copy:hover {
  background-color: var(--border-color);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Responsive overrides for small screen card footers */
@media(max-width: 575px) {
  .prompt-card-footer {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
  }
  .prompt-card-footer .prompt-stat {
    font-size: 0.75rem;
  }
  .prompt-card-footer .btn-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem !important;
  }
}
