/* Blog Custom Styles - Like Button & Comments */

.like-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    border-radius: 9999px;
    padding: 6px 14px;
    line-height: 1;
    text-decoration: none;
    user-select: none;
}

.like-btn-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.like-btn-modern i {
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

/* Light Theme Styles (Default) */
.like-btn-unliked {
    background: rgba(0, 0, 0, 0.04);
    color: #4b5563;
    border-color: rgba(0, 0, 0, 0.08);
}

.like-btn-liked {
    background: #f5f3ff;
    color: #6d28d9;
    border-color: #ddd6fe;
}

/* Dark Theme State Overrides */
[data-bs-theme='dark'] .like-btn-unliked {
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme='dark'] .like-btn-liked {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.4);
}

/* Comments System Styles */
.comment-item {
    transition: all 0.3s ease;
}

[data-bs-theme='dark'] .comment-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Utilities */
.opacity-50 {
    opacity: 0.5;
}

.italic {
    font-style: italic;
}
