/**
 * 정보 게시판 전용 스타일
 */

.badge-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-category.category-guide {
    background: #dbeafe;
    color: #1e40af;
}

.badge-category.category-tip {
    background: #fef3c7;
    color: #92400e;
}

.badge-category.category-news {
    background: #d1fae5;
    color: #065f46;
}

.badge-category.category-tutorial {
    background: #e0e7ff;
    color: #3730a3;
}

.helpdesk-category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.helpdesk-category-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.helpdesk-category-btn:hover {
    background: #f3f4f6;
}

.helpdesk-category-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.helpdesk-like-btn {
    padding: 6px 12px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 13px;
}

.helpdesk-like-btn:hover {
    background: #f3f4f6;
    color: #3b82f6;
}

.helpdesk-like-btn.liked {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #3b82f6;
}

.helpdesk-btn-like {
    background: #3b82f6;
    color: white;
}

.helpdesk-btn-like:hover {
    background: #2563eb;
}
