/* Clickable Card Styles - Reddit-like */

.clickable-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Prevent text selection when clicking */
.clickable-card {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection for content */
.clickable-card .thought-content {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Visual indicator on hover */
.clickable-card:hover .thought-content {
    color: var(--text-primary);
}

/* Make buttons not affected by card hover */
.clickable-card .like-btn,
.clickable-card .btn {
    position: relative;
    z-index: 10;
}

/* Optional: Add subtle border on hover */
.clickable-card:hover {
    border-color: var(--accent-color);
}

/* Prevent double-click text selection */
.clickable-card * {
    -webkit-tap-highlight-color: transparent;
}
