/* App-specific styles for the Prompt Gallery */
body{
/* --- Header / Nav Bar --- */
}
label {
    font-family: arial;
    font-weight: 300;
    font-size: 9px;
    text-transform: uppercase;
    color: black;
}
.btn{
    border-radius: 10px;
}
.bar{
height: 650px;

}

.main-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
padding-left: 20px;
padding-right: 20px;
border-radius: 0 0px 20px 20px;
 
}

@media (min-width: 769px) {
    .main-nav-bar {
       
        top: 0;
        left: 0;
        right: 0;
        z-index: 1020;
        height: 73px;
    }
}

.nav-logo h1 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -2px;
}
.nav-logo a {
    text-decoration: none;
    color: #111827;
}

.nav-search-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-search-bar {
    border-radius: 9999px;
    border: none;
    background-color: #ededed;
    padding: 10px 25px;
    width: 100%;
    max-width: 450px;
    font-size: 14px;
    line-height: 25px;
}
.nav-search-bar:focus {
    outline: none;

    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.nav-user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-profile-pic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.filepond--drop-label {
    background: white;
    min-height: 150px;
    border: 2px dashed gray;
    border-radius: 10px;
    margin-bottom: 25px;
}
.filepond--root .filepond--panel-root {
    background-color: white;
    padding-left: 0;
}
.filepond--root .filepond--item {
 
  top: 10px;}
/* --- Layout --- */
.home-grid-container {
    display: grid;
    /* Define fixed width for sidebars and flexible center */
    grid-template-columns: 250px 1fr 280px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.left-sidebar {
    position: relative;
    width: 250px;
    overflow-y: auto;
    background-color: #c4c4c478;
    padding: 1rem;
    /* border-right: 1px solid #e5e7eb; */
    border-radius: 20px;
}

.feed-column {
    grid-column: 2 / 3; /* Place feed in the second column */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.right-sidebar {
    grid-column: 3 / 4; /* Place right sidebar in the third column */
    padding: 1rem;
}

.sidebar-block {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 10px;
}

.sidebar-block h4 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 10px;
    font-weight: 300;
    /* font-family: arial; */
    text-transform: uppercase;
    color: black;
}

/* --- Feed --- */
.prompt-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
  
}

.prompt-card-img {
    width: 100%;
    height: auto;
    max-height: 512px;
    object-fit: cover;
}

.prompt-card-body {
    padding: 1rem 1.5rem;
}

.prompt-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prompt-text {
    margin: 0;
    font-size: 14px;
    line-height: 19px;
    color: #374151;
    flex-grow: 1;
}

.copy-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #4b5563;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.copy-btn:hover {
    background: #e5e7eb;
}

.prompt-card-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.comments-list {
   
}
.comment-item {
    padding: 40px;
    border-radius: 20px;
}
.card-footer-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.card-footer-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

/* --- Profile Header --- */
.profile-header-card {
    
    text-align: center;
   }

.profile-header-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.profile-header-card h2 {
    margin-bottom: 0.5rem;
}

.profile-header-bio {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

.profile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.profile-social-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
}

.profile-social-links a:hover {
    color: #111827;
}

/* --- Tag List --- */
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tag-list li a {
    display: block;
    padding: 0.5rem 1rem;
    /* background-color: #e9ecef; */
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
    padding-left: 0;
}

.tag-list li a:hover {
    
    color: red;
    text-decoration: none;
}
.profile-view-header {
    margin-bottom: 1rem;
}

.back-to-home-link {
    text-decoration: none;
    font-weight: 500;
    color: #4b5563;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.back-to-home-link:hover {
    background-color: #f3f4f6;
    color: #111827;
    text-decoration: none;
}
/* Custom styles for FilePond image previews */

.filepond--root {
    /* Ensure the root container allows for flexible item arrangement */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items if there's space */
    align-items: flex-start;
    min-height: 150px; /* Maintain a reasonable height for the drop area */
}

.filepond--item {
    /* Style individual file items */
    width: 120px; /* Fixed width for each preview item */
    height: 120px; /* Fixed height for each preview item */
    margin: 10px; /* Space between items */
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-body);
}

.filepond--image-preview {
    /* Style the actual image within the item */
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure image fits without cropping */
}

/* Adjust the drop label to be visible even with small previews */
.filepond--drop-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    pointer-events: none; /* Allow clicks to pass through to the input */
}

/* Hide default FilePond preview panel if custom previews are used */
.filepond--panel-root {
    background-color: transparent; /* Make background transparent */
    border: none; /* Remove default border */
}

/* Adjust the wrapper to ensure the custom layout is applied */
.filepond--wrapper {
   
}

/* Ensure the input element itself doesn't interfere with layout */
.filepond--browser {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* --- Mobile Optimizations --- */

@media (max-width: 1024px) {
    .right-sidebar {
        display: none; /* Hide right sidebar on medium screens */
    }
    .home-grid-container {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 768px) {
    .left-sidebar {
        display: none; /* Hide left sidebar on small screens */
    }
    .home-grid-container {
        grid-template-columns: 1fr; /* A single column for the feed */
       
    }
    .feed-column {
        grid-column: 1 / -1;
    }
    .main-nav-bar {
        padding: 0.75rem 1rem;
    }
    .nav-search-container {
        order: 3; /* Move search below logo and actions */
        width: 100%;
        margin: var(--spacing-2) 0;
        padding: 0 var(--spacing-4); /* Add horizontal padding */
    }
}

.prompt-card-header {
   
    border-bottom: 1px solid var(--color-border-light);
}

.prompt-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.prompt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prompt-card-image-container {
    position: relative;
}

.prompt-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    gap: 10px;
}

.prompt-card-actions .btn-icon {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
}

.btn-icon:hover {
    color: var(--color-primary);
}

.btn-icon-danger:hover {
    color: var(--color-danger);
}

.profile-actions {
    margin-top: 20px;
}

.tag-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill input[type="checkbox"] {
    display: none;
}

.tag-pill label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.tag-pill input[type="checkbox"]:checked + label {
    background-color: var(--color-primary);
    color: white;
}
/* --- Prompt Card --- */
.home-grid-container {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 80px;
    padding-top: 40px;
}

.feed-column {
    max-width: 700px; /* Max width for the central feed */
    margin: 0 auto;
    width: 100%;
}

.prompt-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-8);
    overflow: hidden; /* Ensures image corners are rounded */
}

.prompt-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Default square aspect ratio */
}

.prompt-card-body {
    padding: var(--spacing-4);
}

.prompt-text-container {
    position: relative;
    margin-bottom: var(--spacing-3);
}

.prompt-text {
    font-size: 14px;
    color: var(--color-text-base);
    max-height: 100px; /* Show ~4-5 lines */
    overflow: hidden;
    position: relative;
    padding-right: 30px; /* Space for the old copy button if needed */
}

.copy-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.copy-btn-full {
    display: block;
    width: 100%;
    padding: 12px 10px;
    margin-top: var(--spacing-2);
    background-color: #159223;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.copy-btn-full:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}


.prompt-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-3);
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--spacing-4);
}

.card-footer-user {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    text-decoration: none;
    color: inherit;
}

.footer-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.card-footer-user span {
    font-weight: 600;
    font-size: 14px;
}

.card-footer-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.card-footer-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 18px; /* Icon size */
}

.card-footer-action span {
    font-size: 14px; /* Number size */
    font-weight: 600;
}

/* --- Left & Right Sidebars --- */

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-list li a {
    display: block;
    padding: var(--spacing-2) 0;
    color: var(--color-text-base);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
}

.tag-list li a:hover {
    background-color: #f2f2f2;
}

.tag-list li a.active {
    font-weight: bold;
    color: var(--color-primary);
}

.muted {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Responsive Grid for Home */
@media (max-width: 1024px) {
    .home-grid-container {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .left-sidebar, .right-sidebar {
        display: none; /* Hide sidebars on smaller screens for simplicity */
    }
}

/* Profile Page Specific */
.user-profile-container {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header-card {
    /* background: var(--color-bg-gradient-2); */
    color: var(--color-text-inverse);
    padding: var(--spacing-8);
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 5px solid #fff3;
}

.profile-header-avatar {
    width: var(--spacing-32);
    height: var(--spacing-32);
    border-radius: var(--radius-full);
    border: 4px solid var(--color-bg-surface);
    box-shadow: var(--shadow-lg);
    /* position: absolute; */
    bottom: calc(-1 * var(--spacing-16));
    left: 50%;
    /* transform: translateX(-50%); */
}

.profile-header-bio {
    margin-top: var(--spacing-2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.user-prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-6);
    padding-top: var(--spacing-16); /* Space for the overlapping avatar */
}

/* Single Prompt View */
.single-prompt-container {
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.single-prompt-header {
    padding: var(--spacing-6);
}

.single-prompt-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.single-prompt-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
    color: var(--color-text-muted);
}

.prompt-author-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    text-decoration: none;
    color: inherit;
}
.prompt-author-link:hover {
    color: var(--color-primary);
}

.prompt-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.prompt-author-name {
    font-weight: 600;
}

.single-prompt-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-6);
    padding: var(--spacing-6);
}

.prompt-image-gallery .main-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-2);
}
.prompt-thumbnails {
    display: flex;
    gap: var(--spacing-2);
}
.prompt-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.prompt-thumb.active {
    border-color: var(--color-primary);
}

.prompt-details-sidebar {
    border-left: 1px solid var(--color-border-light);
    padding-left: var(--spacing-6);
}

.prompt-details-sidebar h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-4);
}

.full-prompt-text {
    background: var(--color-bg-body);
    padding: var(--spacing-4);
    border-radius: var(--radius-md);
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.prompt-tags-container {
    margin-top: var(--spacing-4);
}
.tag-badge {
    display: inline-block;
    background: #eee;
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-right: var(--spacing-1);
    margin-bottom: var(--spacing-1);
    text-decoration: none;
    color: var(--color-text-muted);
}
.tag-badge:hover {
    background: var(--color-primary);
    color: white;
}

.comments-section {
    padding: var(--spacing-6);
    margin-top: var(--spacing-8);
}
.comments-section h3 {
    margin-bottom: var(--spacing-6);
}
.comment {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}
.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.comment-body {
    flex: 1;
}
.comment-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-1);
}
.comment-author {
    font-weight: 600;
}
.comment-date {
    font-size: 12px;
    color: var(--color-text-muted);
}
.comment-text {
    font-size: 15px;
}
.comment-actions {
    margin-top: var(--spacing-2);
    display: flex;
    gap: var(--spacing-4);
}
.comment-reply-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
}
.comment-replies {
    margin-left: 15px;
    border-left: 2px solid var(--color-border-light);
    /* padding-left: var(--spacing-4); */
    margin-top: var(--spacing-4);
}

/* Carousel Styles */
.prompt-image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image-wrapper {
    min-width: 100%;
    flex-shrink: 0;
    display: block; /* Ensure anchor takes full space */
}

.prompt-card-img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    display: block;
    object-position: top;
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white; /* Keep for accessibility/fallback */
    border: none;
    width: 40px; /* Fixed width for button */
    height: 40px; /* Fixed height for button */
    display: flex; /* Use flexbox for centering image */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border-radius: var(--radius-sm);
    /* font-size: 1.2rem; Removed as content is now an image */
    padding: 0; /* Remove padding as image will fill */
}

.carousel-nav img {
    width: 24px; /* Size of the arrow image */
    height: 24px;

}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-pagination .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.carousel-pagination .dot.active {
    background-color: var(--color-primary); /* Use primary color for active dot */
}

/* --- Mobile Tags Container (Hidden by default) --- */
.mobile-tags-container {
    display: none;
    padding: var(--spacing-4) 0;
    
}

.mobile-tags-container .sidebar-block {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.mobile-tags-container .sidebar-block h4 {
    display: none; /* Hide the 'Tags' heading on mobile */
}

.mobile-tags-container .tag-list {
    display: flex;
    flex-direction: row; /* Explicitly set direction to horizontal */
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: var(--spacing-2); /* Space for scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    
    gap: var(--spacing-2); /* Space between tags */

}

.mobile-tags-container .tag-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers */
}

.mobile-tags-container .tag-list li {
    flex-shrink: 0; /* Prevent tags from shrinking */
}

.mobile-tags-container .tag-list li a {
    padding-left: 20px;
    background-color: #e9ecef;
    border-radius: var(--radius-full);
    white-space: nowrap;
    padding-right: 20px;
}

/* --- Mobile Optimizations --- */
@media (max-width: 768px) {

.bar {
    height: 750px;
}
    .main-nav-bar {
        flex-wrap: wrap;
        
        gap: var(--spacing-4);
        height: auto; /* Allow height to adjust */
        padding-top: var(--spacing-2);
        padding-bottom: var(--spacing-2);
        width: 100%; /* Make nav bar full width on mobile */
        background: transparent;
    }
    .wrap-90, .wrap-80, .wrap-75, .wrap-70, .wrap-60, .wrap-50, .wrap-40, .wrap-30, .wrap-95 {
    width: 100%;
}
a,p,li{
    font-size: 16px;
}
.btn {
    padding: 12px 30px;
}
.prompt-card-img {
   
    height: 400px;

}
.tag-pill label {
    
    padding: 8px 26px;

    font-size: 13px;
    text-transform: capitalize;
    font-weight: 800;
}
input, textarea {
   
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    border: 2px solid var(--color-secondary);
}
    .main-nav-bar .nav-logo {
        order: 1;
    }

    .main-nav-bar .nav-user-actions {
        order: 2;
       
        margin-top: var(--spacing-2);
    }

    .main-nav-bar .nav-search-container {
        order: 3; /* Move search below logo and actions */
        width: 100%;
        margin: var(--spacing-2) 0;
        padding: 0 var(--spacing-4); /* Add horizontal padding */
    }

    .home-grid-container {
        grid-template-columns: 1fr; /* Single column layout */
        padding-top: 0;
        gap: 20px;
    }

    .left-sidebar, .right-sidebar {
        display: none; /* Hide sidebars on mobile */
    }

    .mobile-tags-container {
        display: block; /* Show mobile tags container */
        width: 100%; /* Make mobile tags container full width */
    }

    .feed-column {
        grid-column: 1 / -1; /* Ensure feed takes full width */
        padding-left: var(--spacing-4);
        padding-right: var(--spacing-4);
    }
}

/* --- Profile Dropdown Menu --- */
.profile-menu-container {
    position: relative;
    display: inline-block;
}

.nav-profile-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.profile-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: calc(100% + 10px); /* Position below the icon with a small gap */
    right: 0;
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    z-index: 1050;
    border: 1px solid var(--color-border-light);
    overflow: hidden; /* Ensures children conform to border radius */
}

.profile-dropdown.show {
    display: block; /* Show the dropdown */
}

.dropdown-item {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--color-text-base);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
    color: var(--color-text-base);
    text-decoration: none;
}
/* --- Like Button Heart Icons --- */
.like-btn .heart-icon-filled {
    display: none; /* Hide filled heart by default */
    color: red;
}
.like-btn .heart-icon-unfilled {
    display: inline-block; /* Show unfilled heart by default */
    color: inherit; /* Inherit color from parent */
}

/* When the button has the .voted class */
.like-btn.voted .heart-icon-filled {
    display: inline-block; /* Show the filled heart */
}
.like-btn.voted .heart-icon-unfilled {
    display: none; /* Hide the unfilled heart */
}

.prompt-card-title {
  font-weight: bold;
}
